| SplineInterpolation Enumeration |
The type of spline interpolation used to interpolate between two curve keys.
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public enum SplineInterpolation
Public Enumeration SplineInterpolation
public enum class SplineInterpolation
Members
| Member name | Value | Description |
---|
| Linear | 0 |
Linear interpolation (LERP).
|
| StepLeft | 1 |
Step interpolation using "left steps". See StepInterpolation.
|
| StepCentered | 2 |
Step interpolation using "centered steps". See StepInterpolation.
|
| StepRight | 3 |
Step interpolation using "right steps". See StepInterpolation.
|
| Bezier | 4 |
Interpolation using a cubic Bézier spline.
|
| BSpline | 5 |
Interpolation using a cubic B-spline.
|
| Hermite | 6 |
Interpolation using a cubic Hermite spline.
|
| CatmullRom | 7 |
Interpolation using a Catmull-Rom spline.
|
See Also