/**
 * A stepped interpolation scheme.
 *
 * @category Animation
 */
export const INTERPOLATION_STEP: 0;
/**
 * A linear interpolation scheme.
 *
 * @category Animation
 */
export const INTERPOLATION_LINEAR: 1;
/**
 * A cubic spline interpolation scheme.
 *
 * @category Animation
 */
export const INTERPOLATION_CUBIC: 2;
