Curve<T>.OnParameterChanged Method

Called after a Curve parameter has been changed.

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
protected virtual void OnParameterChanged(
	int index,
	T value
)

Parameters

index  Int32
The index of the parameter.
value  T
The new value of the parameter.

Remarks

Inheritors can override this method to perform certain calculations using the new value of the parameter.

See Also