|
TriangulatorProject3DPositionTo2D(IListPoint3D) Method |
Returns a List of 2D points that are created with projecting the 3D positions onto the xy, xz or yz plane (removing one of the coordinates).
The plane is determined with checking the normal of the first triangle and determining which component of the normal vector is the biggest (this coordinate is removing).
This requires that the positions lie on the same plane. Input positions must not be null or have less that 3 elements.
Namespace: Ab3d.UtilitiesAssembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax public static List<Point> Project3DPositionTo2D(
IList<Point3D> positions
)
Parameters
- positions IListPoint3D
- List of 3D positions
Return Value
ListPointList of 2D Positions
See Also