LineLineIntersection


Computes a common point of two lines.

Syntax

C++
Python
 
def LineLineIntersection(
	inLine1: Line2D,
	inLine2: Line2D,
	/
)
-> outIntersectionPoint: Point2D | None

Parameters

Name Type Default Description
Input value inLine1 Line2D
Input value inLine2 Line2D
Output value outIntersectionPoint Point2D | None