Home | History | Annotate | Download | only in core

Lines Matching defs:conic

240      *  return the power-of-2 number of quads needed to approximate this conic
246 * Chop this conic into N quads, stored continguously in pts[], where
263 * Help class to allocate storage for approximating a conic with N quads.
270 * Given a conic and a tolerance, return the array of points for the
281 const SkPoint* computeQuads(const SkConic& conic, SkScalar tol) {
282 int pow2 = conic.computeQuadPOW2(tol);
285 conic.chopIntoQuadsPOW2(pts, pow2);
291 SkConic conic;
292 conic.set(pts, weight);
293 return computeQuads(conic, tol);