| CurveKeyTParam, TPointParameter Property |
Gets or sets a value that defines where this curve key is positioned on the curve.
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public TParam Parameter { get; set; }
Public Property Parameter As TParam
Get
Set
public:
property TParam Parameter {
TParam get ();
void set (TParam value);
}
member Parameter : 'TParam with get, set
Property Value
Type:
TParamThe parameter value.
Remarks
The parameter is normally zero at the first curve key and increases as we move along the
curve.
Depending on where or how the curve is used the curve parameter could be interpreted as
time (to describe when a certain point is reached) or distance (to describe
the distance from the start of the curve). Other interpretations can be used as well.
See Also