Skip to content

Commit

Permalink
Merge pull request #108 from wlinna/patch-1
Browse files Browse the repository at this point in the history
Clarify doc comments of SegmentsIntersection::Point
  • Loading branch information
sebcrozet authored Dec 7, 2022
2 parents d7110f9 + 9a76d7b commit 936e257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/segments_intersection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ use na::ComplexField;
pub enum SegmentsIntersection {
/// Single point of intersection.
Point {
/// Location of the first intersection point on the first segment.
/// Location of the intersection point on the first segment.
loc1: SegmentPointLocation,
/// Location of the second intersection point on the second segment.
/// Location of the intersection point on the second segment.
loc2: SegmentPointLocation,
},
/// Intersection along a segment (when both segments are collinear).
Expand Down

0 comments on commit 936e257

Please sign in to comment.