| Curve2FGetLength Method |
Not supported.
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public override float GetLength(
float start,
float end,
int maxNumberOfIterations,
float tolerance
)
Public Overrides Function GetLength (
start As Single,
end As Single,
maxNumberOfIterations As Integer,
tolerance As Single
) As Single
public:
virtual float GetLength(
float start,
float end,
int maxNumberOfIterations,
float tolerance
) override
abstract GetLength :
start : float32 *
end : float32 *
maxNumberOfIterations : int *
tolerance : float32 -> float32
override GetLength :
start : float32 *
end : float32 *
maxNumberOfIterations : int *
tolerance : float32 -> float32
Parameters
- start
- Type: SystemSingle
The parameter value of the start position. - end
- Type: SystemSingle
The parameter value of the end position. - maxNumberOfIterations
- Type: SystemInt32
The maximum number of iterations which are taken to compute the length.
- tolerance
- Type: SystemSingle
The tolerance value. This method will return an approximation of the precise length.
The absolute error will be less than this tolerance.
Return Value
Type:
SingleThe approximated length of the curve in the given interval.
Implements
ICurveTParam, TPointGetLength(TParam, TParam, Int32, TParam)Exceptions See Also