Gets or sets a value that defines where this curve key is positioned on the curve.

Namespace: DigitalRune.Mathematics.Interpolation
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.7.0.0 (1.7.0.9486)

Syntax

C#
public TParam Parameter { get; set; }
Visual Basic
Public Property Parameter As TParam
	Get
	Set
Visual C++
public:
property TParam Parameter {
	TParam get ();
	void set (TParam value);
}

Field Value

The 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 a 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