Skip to content

Commit

Permalink
Improve documentation of Polyline
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Oct 15, 2024
1 parent 10db20e commit 5170ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/geometry/util/polyline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<const D: usize> {
/// # The points that make up the vertices between the line segments
/// # The connecting points between line segments
pub points: Vec<Point<D>>,

/// # 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<Point<1>>,
}

Expand Down

0 comments on commit 5170ff4

Please sign in to comment.