Intersection2D
Types
Link copied to clipboard
Objects intersect in infinite points (e.g. overlapping segments).
Link copied to clipboard
data class MultiplePoints<P : Vector2D<P>>(val points: List<P>) : Intersection2D<P>
Content copied to clipboard
Objects intersect in a discrete number of points.
Link copied to clipboard
Objects do not intersect.
Link copied to clipboard
data class SinglePoint<P : Vector2D<P>>(val point: P) : Intersection2D<P>
Content copied to clipboard
Objects intersect in a single point.