Computes a common point of a line and a segment.
Syntax
C++
C#
Python
def LineSegmentIntersection(
inLine: Line2D,
inSegment: Segment2D,
/
)
-> outIntersectionPoint: Point2D | None
Parameters
|
Name |
Type |
Default |
Description |
 |
inLine |
Line2D |
|
|
 |
inSegment |
Segment2D |
|
|
 |
outIntersectionPoint |
Point2D | None |
|
|