Utility.IsPolygonDegenerated<T> Method

Checks if the polygon is self-intersecting or has T junctions.
Public Shared Function IsPolygonDegenerated(Of  _ 
T As Point2D)( _ 
ByVal vertices As IList(Of T) _ 
) As Boolean
This language is not supported or no code example is available.
public static bool IsPolygonDegenerated<T>( 
IList<T> vertices 

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

Type Parameters

T

The point type

Parameters

vertices
IList<T>

The list of vertices

Return Value

bool

True if the polygon is self intersecting or has T junctions, false otherwise.

.NET Framework

Supported in: 4.8

In this article

Definition