Click or drag to resize
Ab4d.SharpEngine logo

PolygonVertexCreateFromPoints Method

Creates a double linked list of PolygonVertex from the specified points and returns the first PolygonVertex.

Namespace: Ab4d.SharpEngine.Common
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public static PolygonVertex CreateFromPoints(
	Vector2[] points,
	int count = -1
)

Parameters

points  Vector2
list of Vector2 positions
count  Int32  (Optional)
optional count that is used when it is bigger than 0 (-1 by default), otherwise the length of the points array is used

Return Value

PolygonVertex
first PolygonVertex in double linked list
See Also