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


