Click or drag to resize
DigitalRuneSplineInterpolation Enumeration
The type of spline interpolation used to interpolate between two curve keys.

Namespace: DigitalRune.Mathematics.Interpolation
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public enum SplineInterpolation
Members
  Member nameValueDescription
Linear0 Linear interpolation (LERP).
StepLeft1 Step interpolation using "left steps". See StepInterpolation.
StepCentered2 Step interpolation using "centered steps". See StepInterpolation.
StepRight3 Step interpolation using "right steps". See StepInterpolation.
Bezier4 Interpolation using a cubic Bézier spline.
BSpline5 Interpolation using a cubic B-spline.
Hermite6 Interpolation using a cubic Hermite spline.
CatmullRom7 Interpolation using a Catmull-Rom spline.
See Also