LineSegmentIntersection


Computes a common point of a line and a segment.

Syntax

C++
Python
 
def LineSegmentIntersection(
	inLine: Line2D,
	inSegment: Segment2D,
	/
)
-> outIntersectionPoint: Point2D | None

Parameters

Name Type Default Description
Input value inLine Line2D
Input value inSegment Segment2D
Output value outIntersectionPoint Point2D | None