ProjectPointsOnCircle
Projects points onto a circle.
Syntax
C++
Python
def ProjectPointsOnCircle( inPoints: list[Point2D], inCircle: Circle2D, / ) -> ( outProjectionPoints: list[Point2D], outProjectionArc: Arc2D | None )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints | list[Point2D] | Points to be projected | |
![]() |
inCircle | Circle2D | Circle the points will be projected on | |
![]() |
outProjectionPoints | list[Point2D] | Projected points | |
![]() |
outProjectionArc | Arc2D | None | Arc containing the projected points |


