Click or drag to resize
DigitalRuneStepInterpolation Enumeration
The type of step interpolation.

Namespace: DigitalRune.Mathematics.Interpolation
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public enum StepInterpolation
Members
  Member nameValueDescription
Left0 A step interpolation between two values a and b with an interpolation parameter u that returns a for u = 0 and b for u > 0.
Centered1 A step interpolation between two values a and b with an interpolation parameter u that returns a for all u < 0.5 and b for u ≥ 0.5.
Right2 A step interpolation between two values a and b with an interpolation parameter u that returns a for all u < 1 and b for u = 1.
See Also