Represents an interpolation curve. The curve is parametrized using a parameter u. Because of the parametrization, it is possible that for some x values there can exist more than one corresponding y values.
Instance member | Description |
Full Usage:
this.GetXOfU
Parameters:
float
-
The parameter.
Returns: float
The y value at the given value of u.
Modifiers: abstract |
![]() ![]() ![]() ![]() Returns a x value in dependence of a parameter u.
|
Full Usage:
this.GetYOfU
Parameters:
float
-
The parameter.
Returns: float
The y value at the given value of u.
Modifiers: abstract |
![]() ![]() ![]() ![]() Returns a y value in dependence of a parameter u.
|
Full Usage:
this.Interpolate
Parameters:
IReadOnlyList<float>
-
Vector of x (independent) data.
yvec : IReadOnlyList<float>
-
Vector of y (dependent) data.
Modifiers: abstract |
![]() ![]() ![]() ![]() Sets the interpolation data by providing values for x and y. Both vectors must be of equal length.
|