Home | History | Annotate | Download | only in core

Lines Matching defs:P0

184     SkConic(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2, SkScalar w) {
185 fPts[0] = p0;
203 void set(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2, SkScalar w) {
204 fPts[0] = p0;
306 Sk2s p0 = from_point(conic.fPts[0]);
312 fNumer.fC = p0;
313 fNumer.fA = p2 - times_2(p1w) + p0;
314 fNumer.fB = times_2(p1w - p0);
334 Sk2s P0 = from_point(src[0]);
339 fA = P3 + three * (P1 - P2) - P0;
340 fB = three * (P2 - times_2(P1) + P0);
341 fC = three * (P1 - P0);
342 fD = P0;