• Checks if two line segments intersect.

    Parameters

    • line0: Point[]

      The first line segment [start, end].

    • line1: Point[]

      The second line segment [start, end].

    Returns boolean

    true if the line segments intersect, otherwise false.

    Not Exported