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 | |
|---|---|---|---|---|
![]() |
inPoints | list[Point2D] | ||
![]() |
inLine | Line2D | ||
![]() |
outProjectionPoints | list[Point2D] | ||
![]() |
outProjectionSegment | Segment2D | None | ||
![]() |
outMeanDistance | float |


