InterpolationMode#
- class InterpolationMode#
The various interpolation modes available.
Fields#
- class InterpolationMode
- CUBIC#
Cubic interpolation (natural), may overshoot the min or max values set by the control point, but is more ‘curvy’
- CUBIC_MONOTONIC#
Monotonic cubic interpolation, will not produce any values outside of the min-max range set by the control points (Since: 1.8)
- LINEAR#
Linear interpolation
- NONE#
Steps-like interpolation, default