SegmentSegmentIntersection


Computes a common point of two segments.

Syntax

C++
Python
 
def SegmentSegmentIntersection(
	inSegment1: Segment2D,
	inSegment2: Segment2D,
	/
)
-> outIntersectionPoint: Point2D | None

Parameters

Name Type Default Description
Input value inSegment1 Segment2D
Input value inSegment2 Segment2D
Output value outIntersectionPoint Point2D | None