ProjectPointsOnLine3D


Projects points onto a line.

Syntax

C++
C#
Python
 
def ProjectPointsOnLine3D(
	inPoints: list[Point3D],
	inLine: Line3D,
	/
)
-> (
	outProjectionPoints: list[Point3D],
	outProjectionSegment: Segment3D | None
)

Parameters

Name Type Default Description
Input value inPoints list[Point3D]
Input value inLine Line3D
Output value outProjectionPoints list[Point3D]
Output value outProjectionSegment Segment3D | None