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
Input value inPoints list[Point2D] Points to be projected
Input value inCircle Circle2D Circle the points will be projected on
Output value outProjectionPoints list[Point2D] Projected points
Output value outProjectionArc Arc2D | None Arc containing the projected points