Curve<T>.OnParameterChanging Method

Called before the value of a curve parameter is changed.

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
protected virtual void OnParameterChanging(
	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 validate the value of the new parameter.

See Also