Home | History | Annotate | Download | only in common

Lines Matching defs:SPLINE_TIME

600         private static final float[] SPLINE_TIME = new float[NB_SAMPLES + 1];
634 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
636 SPLINE_POSITION[NB_SAMPLES] = SPLINE_TIME[NB_SAMPLES] = 1.0f;
678 final float t_inf = SPLINE_TIME[index];
679 final float t_sup = SPLINE_TIME[index + 1];