LineCircleIntersection
Computes common points of a circle and a line.
Syntax
C++
Python
def LineCircleIntersection( inLine: Line2D, inCircle: Circle2D, / ) -> ( outIntersectionPoint1: Point2D | None, outIntersectionPoint2: Point2D | None )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inLine | Line2D | ||
![]() |
inCircle | Circle2D | ||
![]() |
outIntersectionPoint1 | Point2D | None | ||
![]() |
outIntersectionPoint2 | Point2D | None |


