Click or drag to resize
AB4D logo

Triangulator(IListPoint, Boolean) Constructor

Constructor that takes positions that define the outer polygon. To add a hole call AddHole(PointCollection) method. To add multiple outer polygons and holes, use constructor that takes an array of list of points.

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public Triangulator(
	IList<Point> points,
	bool isYAxisUp
)

Parameters

points  IListPoint
list of points that define the polygon that need to be triangulated.
isYAxisUp  Boolean
Optional Boolean that specifies if Y axis is pointing up (true by default). This affects the value of IsClockwise property.
See Also