Lines Matching refs:interp_quad_coords
233 static double interp_quad_coords(const double* src, double t) {
283 double ax = dst[0].fX = interp_quad_coords(&fPts[0].fX, t1);
284 double ay = dst[0].fY = interp_quad_coords(&fPts[0].fY, t1);
285 double dx = interp_quad_coords(&fPts[0].fX, (t1 + t2) / 2);
286 double dy = interp_quad_coords(&fPts[0].fY, (t1 + t2) / 2);
287 double cx = dst[2].fX = interp_quad_coords(&fPts[0].fX, t2);
288 double cy = dst[2].fY = interp_quad_coords(&fPts[0].fY, t2);
337 static void interp_quad_coords(const double* src, double* dst, double t) {
350 interp_quad_coords(&fPts[0].fX, &dst.pts[0].fX, t);
351 interp_quad_coords(&fPts[0].fY, &dst.pts[0].fY, t);