ProjectPointsOnLine


Projects points onto a line.

Syntax

C++
Python
 
def ProjectPointsOnLine(
	inPoints: list[Point2D],
	inLine: Line2D,
	/
)
-> (
	outProjectionPoints: list[Point2D],
	outProjectionSegment: Segment2D | None,
	outMeanDistance: float
)

Parameters

Name Type Default Description
Input value inPoints list[Point2D]
Input value inLine Line2D
Output value outProjectionPoints list[Point2D]
Output value outProjectionSegment Segment2D | None
Output value outMeanDistance float