Utility.IsOrientedClockwise<T> Method

Detects polygon orientation (the points are always projected on XY plane).
Public Shared Function IsOrientedClockwise(Of  _ 
T As Point2D)( _ 
ByVal polygon As IList(Of T) _ 
) As Boolean
This language is not supported or no code example is available.
public static bool IsOrientedClockwise<T>( 
IList<T> polygon 

where T : Point2D
This language is not supported or no code example is available.

Type Parameters

T

Parameters

polygon
IList<T>

The polygon to check

Return Value

bool

True if the polygon orientation is clockwise.

.NET Framework

Supported in: 4.8

In this article

Definition