Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / IsPolygonConvex<T> Method
The planar closed polygon vertices

In This Topic
    IsPolygonConvex<T> Method
    In This Topic
    Returns true if the planar closed polygon is convex.
    Syntax
    'Declaration
     
    Public Shared Function IsPolygonConvex(Of T As Point2D)( _
       ByVal vertices As IList(Of T) _
    ) As Boolean
    public static bool IsPolygonConvex<T>( 
       IList<T> vertices
    )
    where T: Point2D

    Parameters

    vertices
    The planar closed polygon vertices

    Type Parameters

    T

    Return Value

    True if the polygon is convex, false otherwise.
    See Also