Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / IsClosedProfile<T> Method
The type of the elements of the profile, must be derived from Point2D
The list of vertices of the profile

In This Topic
    IsClosedProfile<T> Method
    In This Topic
    Tells if a profile is closed, depending on a tolerance computed from its size.
    Syntax
    'Declaration
     
    Public Shared Function IsClosedProfile(Of T As Point2D)( _
       ByVal profile As IList(Of T) _
    ) As Boolean
    public static bool IsClosedProfile<T>( 
       IList<T> profile
    )
    where T: Point2D

    Parameters

    profile
    The list of vertices of the profile

    Type Parameters

    T
    The type of the elements of the profile, must be derived from Point2D

    Return Value

    See Also