hgeometry-0.14: Geometric Algorithms, Data structures, and Data types.
Safe HaskellNone
LanguageHaskell2010

Algorithms.Geometry.LineSegmentIntersection.Naive

Description

Line segment intersections in \(O(n^2)\) by checking all pairs.

Synopsis

Documentation

intersections :: forall r p e. (Ord r, Fractional r) => [LineSegment 2 p r :+ e] -> Intersections p r e Source #

Compute all intersections (naively)

\(O(n^2)\)