Lines Matching refs:fCubicX
51 std::array<double, 4> fCubicX; // Screen space cubic control points.
128 fCubicX[i] = X[i] * kRadius + kCenterX;
131 double errX = std::get<0>(eval_cubic(fCubicX.data(), fMaxErrorT)) - kCenterX;
166 cubicPath.moveTo(fCubicX[0], fCubicY[0]);
167 cubicPath.cubicTo(fCubicX[1], fCubicY[1], fCubicX[2], fCubicY[2], fCubicX[3], fCubicY[3]);
174 SkPoint points[2] = {{(float)fCubicX[0], (float)fCubicY[0]},
175 {(float)fCubicX[3], (float)fCubicY[3]}};
213 double dx0 = x - fCubicX[0];
215 double dx3 = x - fCubicX[3];