This commit is contained in:
Hanno Braun 2024-09-26 19:38:22 +02:00
parent 78c1b5fd43
commit b88f4728dc

View File

@ -18,7 +18,7 @@ impl<const D: usize> GenPolyline<D> for Line<D> {
let point = self.origin() + self.direction() * point_curve.t;
LineSegment {
points: [point, point],
points: [point; 2],
points_line: [point_curve; 2],
}
}