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


