Intersect2d.PolyPolyParametric Method

Intersects a primary polyline with a secondary, and returns a list of parameters of the intersection points on the primary polyline. If cleanDist is larger than zero, parameters within the _length_ along the poly given is rmoved so that no duplicates is in the result
Public Shared Function PolyPolyParametric( _ 
ByVal primary As Poly2d, _ 
ByVal secondary As Poly2d, _ 
Optional ByVal cleanDist As Double = 1e-4 _ 
) As List(Of Double)
This language is not supported or no code example is available.
public static List<double> PolyPolyParametric( 
Poly2d primary
Poly2d secondary
double cleanDist = 1e-4 
)
This language is not supported or no code example is available.
public:  
static List<double>^ PolyPolyParametric( 
Poly2d^ primary
Poly2d^ secondary
double cleanDist 
)
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Parameters

primary
Poly2d

secondary
Poly2d

cleanDist
double

Return Value

List<double>

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition