Poly2d.Param Method

Computes a parameter on the poly in the range 0-1 where a given point resides. If the point is further away than 1e-4 from the poly, an exception is thrown. If the point is at a self intersection of the poly, the first(lowest) parameter is computed.
Public Function Param( _ 
ByVal p As Point2d
) As Double
This language is not supported or no code example is available.
public double Param( 
Point2d p 
)
This language is not supported or no code example is available.
public:  
double Param( 
Point2d^ p 
)
This language is not supported or no code example is available.
public function Param( 
p : Point2d 
) : double;
This language is not supported or no code example is available.

Parameters

p
Point2d

The point to get parameter for.

Return Value

double

A parameter in the range 0-1.

.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