Lines Matching defs:conic
13 manually compute the intersection of a pair of circles and see if the conic intersection matches
75 SkConic conic, chopped[2];
77 conic.fPts[index].fX = c.fPts[index].fX * scale;
78 conic.fPts[index].fY = c.fPts[index].fY * scale;
84 conic.fW = c.fW;
89 conic.computeTightBounds(&bounds);
100 path.moveTo(conic.fPts[0]);
101 path.conicTo(conic.fPts[1], conic.fPts[2], conic.fW);
159 SkConic conic;
161 conic.fPts[index] = dConic.fPts[index].asSkPoint();
163 conic.fW = dConic.fWeight;
166 if (!conic.chopAt(SkDoubleToScalar(t), chopped)) {
176 writePng(conic, chopped, name);