LineArcIntersection
Computes the common points of an arc and a line.
Syntax
C++
Python
def LineArcIntersection( inLine: Line2D, inArc: Arc2D, / ) -> ( outIntersectionPoint1: Point2D | None, outIntersectionPoint2: Point2D | None )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inLine | Line2D | ||
![]() |
inArc | Arc2D | ||
![]() |
outIntersectionPoint1 | Point2D | None | ||
![]() |
outIntersectionPoint2 | Point2D | None |


