Points3DToPoints2D_AxesPlane
Projects an array of 3D points onto a plane defined by coordinate axes.
Syntax
C++
C#
Python
def Points3DToPoints2D_AxesPlane( inPoints3D: list[Point3D], inPlaneType: PlaneType, /, *, outProjectionPlane: Plane3D | None = None ) -> outPoints2D: list[Point2D]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints3D | list[Point3D] | ||
![]() |
inPlaneType | PlaneType | ||
![]() |
outPoints2D | list[Point2D] | ||
![]() |
outProjectionPlane | Plane3D | None | None | Plane the input is projected onto |


