Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / IsOrientedClockwise<T> Method
The polygon to check

In This Topic
    IsOrientedClockwise<T> Method (Utility)
    In This Topic
    Detects polygon orientation (the points are always projected on XY plane).
    Syntax
    'Declaration
     
    Public Shared Function IsOrientedClockwise(Of T As Point2D)( _
       ByVal polygon As IList(Of T) _
    ) As Boolean
    public static bool IsOrientedClockwise<T>( 
       IList<T> polygon
    )
    where T: Point2D

    Parameters

    polygon
    The polygon to check

    Type Parameters

    T

    Return Value

    True if the polygon orientation is clockwise.
    See Also