Click or drag to resize

PolygonError Enumeration

Namespace:  Internal.tainicom.Aether.Physics2D.Common
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public enum PolygonError
Members
  Member nameValueDescription
NoError0 There were no errors in the polygon
InvalidAmountOfVertices1 Polygon must have between 3 and Settings.MaxPolygonVertices vertices.
NotSimple2 Polygon must be simple. This means no overlapping edges.
NotCounterClockWise3 Polygon must have a counter clockwise winding.
NotConvex4 The polygon is concave, it needs to be convex.
AreaTooSmall5 Polygon area is too small.
SideTooSmall6 The polygon has a side that is too short.
See Also