From 5170ff47cb20a0c08428a8d6f1424829f11240e7 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 15 Oct 2024 20:17:29 +0200 Subject: [PATCH] Improve documentation of `Polyline` --- crates/fj-core/src/geometry/util/polyline.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/geometry/util/polyline.rs b/crates/fj-core/src/geometry/util/polyline.rs index 85f4cfd09..a655a8e47 100644 --- a/crates/fj-core/src/geometry/util/polyline.rs +++ b/crates/fj-core/src/geometry/util/polyline.rs @@ -8,10 +8,10 @@ use crate::geometry::{traits::GenPolyline, CurveBoundary, Tolerance}; /// /// Can be 2- or 3-dimensional, as specified by the `D` type parameter. pub struct Polyline { - /// # The points that make up the vertices between the line segments + /// # The connecting points between line segments pub points: Vec>, - /// # The same points as the ones in the `points` field, but in curve coords + /// # The connecting points between line segments, in curve coordinates pub points_curve: Vec>, }