intersectLineSegmentPolyline

See source code

Find the intersections between a line segment and a polyline.

function intersectLineSegmentPolyline(
  a1: VecLike,
  a2: VecLike,
  points: VecLike[]
): null | VecLike[]

Parameters

NameDescription

a1

The segment's first point.

a2

The segment's second point.

points

The points in the polyline.

Returns

null | VecLike[]
Prev
intersectLineSegmentPolygon
Next
intersectPolygonBounds