Line2d.Eval (Double, out Double) Method

Computes a new point which is on this infinite line given a parameter in range 0-1. Smaller parameters than 0.0 or larger parameters than 1.0 works as well, and returns points out of the line segment. A tangent angle at the parameter is computed as well (which in this case is same as lines angle)
Public Function Eval( _ 
ByVal param As Double, _ 
ByRef tangent As Double
) As Point2d
This language is not supported or no code example is available.
public Point2d Eval( 
double param
out double tangent 
)
This language is not supported or no code example is available.
public:  
Point2d^ Eval( 
double param
double& tangent 
)
This language is not supported or no code example is available.
public function Eval( 
param : double
tangent : double 
) : Point2d;
This language is not supported or no code example is available.

Parameters

param
double

The parameter to compute for.

tangent
double

The tangent angle at the parameter (which in this case is same as lines angle)

Return Value

Point2d

A new point on the line segment.

.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