| StepInterpolation Enumeration |
The type of step interpolation.
Namespace: DigitalRune.Mathematics.InterpolationAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public enum StepInterpolation
Public Enumeration StepInterpolation
public enum class StepInterpolation
Members
| Member name | Value | Description |
---|
| Left | 0 |
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.
|
| Centered | 1 |
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.
|
| Right | 2 |
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