Click or drag to resize
AB4D logo

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.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public static List<Point> Project3DPositionTo2D(
	IList<Point3D> positions
)

Parameters

positions  IListPoint3D
List of 3D positions

Return Value

ListPoint
List of 2D Positions
See Also