Utility.Intersection2D (Point3D(), Point3D(), Boolean) Method

Seek intersections between two polygonal chains.
Public Shared Function Intersection2D( _ 
ByVal chainA As Point3D(), _ 
ByVal chainB As Point3D(), _ 
Optional ByVal tIntersections As Boolean = true _ 
) As Boolean
This language is not supported or no code example is available.
public static bool Intersection2D( 
Point3D[] chainA
Point3D[] chainB
bool tIntersections = true 
)
This language is not supported or no code example is available.

Parameters

chainA
Point3D[]

The first polygonal chain

chainB
Point3D[]

The second polygonal chain

tIntersections
bool

If true, T-intersections are considered; otherwise, they are ignored

Return Value

bool

True if at least one intersection is found, false otherwise.

.NET Framework

Supported in: 4.8

In this article

Definition