Utility.IsPolygonSelfIntersecting<T> Method

Checks if the polygon is self-intersecting.
Public Shared Function IsPolygonSelfIntersecting(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 IsPolygonSelfIntersecting<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, false otherwise

.NET Framework

Supported in: 4.8

In this article

Definition