Searched refs:omt2 (Results 1 – 1 of 1) sorted by relevance
324 const vg_lite_float_t omt2 = omt * omt; in cubic_bezier_eval() local325 const vg_lite_float_t omt3 = omt * omt2; in cubic_bezier_eval()329 *x = omt3 * c->X0 + 3.0 * t * omt2 * c->X1 + 3.0 * t2 * omt * c->X2 + t3 * c->X3; in cubic_bezier_eval()330 *y = omt3 * c->Y0 + 3.0 * t * omt2 * c->Y1 + 3.0 * t2 * omt * c->Y2 + t3 * c->Y3; in cubic_bezier_eval()
Completed in 5 milliseconds