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


