Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / IsPolygonSelfIntersecting<T> Method
The point type
The list of vertices

In This Topic
    IsPolygonSelfIntersecting<T> Method
    In This Topic
    Checks if the polygon is self-intersecting.
    Syntax
    'Declaration
     
    Public Shared Function IsPolygonSelfIntersecting(Of T As Point2D)( _
       ByVal vertices As IList(Of T) _
    ) As Boolean
    public static bool IsPolygonSelfIntersecting<T>( 
       IList<T> vertices
    )
    where T: Point2D

    Parameters

    vertices
    The list of vertices

    Type Parameters

    T
    The point type

    Return Value

    True if the polygon is self intersecting, false otherwise
    See Also