MathHelperClockwisePolygon Method
|
Determines the points of polygon are in clockwise order.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool ClockwisePolygon(
Vector2[] Polygon
)
Public Shared Function ClockwisePolygon (
Polygon As Vector2()
) As Boolean
public:
static bool ClockwisePolygon(
array<Vector2>^ Polygon
)
static member ClockwisePolygon :
Polygon : Vector2[] -> bool
STATIC METHOD ClockwisePolygon(
Polygon AS Vector2[]
) AS LOGIC
Parameters
- Polygon
- Type: DXFReaderNETVector2
The vertices of polygon.
Return Value
Type:
Booleantrue if the points of polygon are in clockwise order; otherwise, false
See Also