• Home
  • Raw
  • Download

Lines Matching refs:fPts

980     ratquad_mapTo3D(fPts, fW, tmp);  in chopAt()
986 dst[0].fPts[0] = fPts[0]; in chopAt()
987 tmp2[0].projectDown(&dst[0].fPts[1]); in chopAt()
988 tmp2[1].projectDown(&dst[0].fPts[2]); dst[1].fPts[0] = dst[0].fPts[2]; in chopAt()
989 tmp2[2].projectDown(&dst[1].fPts[1]); in chopAt()
990 dst[1].fPts[2] = fPts[2]; in chopAt()
1028 dst->fPts[0] = to_point(aXY / aZZ); in chopAt()
1029 dst->fPts[1] = to_point(bXY / bZZ); in chopAt()
1030 dst->fPts[2] = to_point(cXY / cZZ); in chopAt()
1043 if ((t == 0 && fPts[0] == fPts[1]) || (t == 1 && fPts[1] == fPts[2])) { in evalTangentAt()
1044 return fPts[2] - fPts[0]; in evalTangentAt()
1046 Sk2s p0 = from_point(fPts[0]); in evalTangentAt()
1047 Sk2s p1 = from_point(fPts[1]); in evalTangentAt()
1048 Sk2s p2 = from_point(fPts[2]); in evalTangentAt()
1080 Sk2s p0 = from_point(fPts[0]); in chop()
1081 Sk2s p1 = from_point(fPts[1]); in chop()
1082 Sk2s p2 = from_point(fPts[2]); in chop()
1088 dst[0].fPts[0] = fPts[0]; in chop()
1089 dst[0].fPts[1] = to_point((p0 + wp1) * scale); in chop()
1090 dst[0].fPts[2] = dst[1].fPts[0] = to_point(m); in chop()
1091 dst[1].fPts[1] = to_point((wp1 + p2) * scale); in chop()
1092 dst[1].fPts[2] = fPts[2]; in chop()
1104 SkScalar x = k * (fPts[0].fX - 2 * fPts[1].fX + fPts[2].fX); \
1105 SkScalar y = k * (fPts[0].fY - 2 * fPts[1].fY + fPts[2].fY);
1159 memcpy(pts, &src.fPts[1], 2 * sizeof(SkPoint)); in subdivide()
1172 *pts = fPts[0]; in chopIntoQuadsPOW2()
1179 return conic_find_extrema(&fPts[0].fX, fW, t); in findXExtrema()
1183 return conic_find_extrema(&fPts[0].fY, fW, t); in findYExtrema()
1192 SkScalar value = dst[0].fPts[2].fX; in chopAtXExtrema()
1193 dst[0].fPts[1].fX = value; in chopAtXExtrema()
1194 dst[1].fPts[0].fX = value; in chopAtXExtrema()
1195 dst[1].fPts[1].fX = value; in chopAtXExtrema()
1207 SkScalar value = dst[0].fPts[2].fY; in chopAtYExtrema()
1208 dst[0].fPts[1].fY = value; in chopAtYExtrema()
1209 dst[1].fPts[0].fY = value; in chopAtYExtrema()
1210 dst[1].fPts[1].fY = value; in chopAtYExtrema()
1218 pts[0] = fPts[0]; in computeTightBounds()
1219 pts[1] = fPts[2]; in computeTightBounds()
1233 bounds->set(fPts, 3); in computeFastBounds()
1344 matrix.mapPoints(dst[i].fPts, 3); in BuildUnitArc()