Searched refs:interp_cubic_coords (Results 1 - 2 of 2) sorted by relevance
/third_party/skia/experimental/docs/ |
H A D | interpolatorFunctions.js | 5 function interp_cubic_coords(x1, x2, x3, x4, t) function 30 var ax = interp_cubic_coords(x1, x2, x3, x4, t1); 31 var ay = interp_cubic_coords(y1, y2, y3, y4, t1); 32 var ex = interp_cubic_coords(x1, x2, x3, x4, (t1*2+t2)/3); 33 var ey = interp_cubic_coords(y1, y2, y3, y4, (t1*2+t2)/3); 34 var fx = interp_cubic_coords(x1, x2, x3, x4, (t1+t2*2)/3); 35 var fy = interp_cubic_coords(y1, y2, y3, y4, (t1+t2*2)/3); 36 var dx = interp_cubic_coords(x1, x2, x3, x4, t2); 37 var dy = interp_cubic_coords(y1, y2, y3, y4, t2);
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsCubic.cpp | 86 static void interp_cubic_coords(const double* src, double* dst, double t) { in interp_cubic_coords() function 120 interp_cubic_coords(&fPts[0].fX, &dst.pts[0].fX, t); in chopAt() 121 interp_cubic_coords(&fPts[0].fY, &dst.pts[0].fY, t); in chopAt() 644 static double interp_cubic_coords(const double* src, double t) { 664 double ax = dst[0].fX = interp_cubic_coords(&fPts[0].fX, t1); 665 double ay = dst[0].fY = interp_cubic_coords(&fPts[0].fY, t1); 666 double ex = interp_cubic_coords(&fPts[0].fX, (t1*2+t2)/3); 667 double ey = interp_cubic_coords(&fPts[0].fY, (t1*2+t2)/3); 668 double fx = interp_cubic_coords(&fPts[0].fX, (t1+t2*2)/3); 669 double fy = interp_cubic_coords( [all...] |
Completed in 2 milliseconds