Home
last modified time | relevance | path

Searched refs:dCurve (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsCurve.cpp64 SkDConic dCurve; in setConicBounds() local
65 dCurve.set(curve, curveWeight); in setConicBounds()
67 dRect.setBounds(dCurve, fConic, tStart, tEnd); in setConicBounds()
74 SkDCubic dCurve; in setCubicBounds() local
75 dCurve.set(curve); in setCubicBounds()
77 dRect.setBounds(dCurve, fCubic, tStart, tEnd); in setCubicBounds()
84 SkDQuad dCurve; in setQuadBounds() local
85 dCurve.set(curve); in setQuadBounds()
87 dRect.setBounds(dCurve, fQuad, tStart, tEnd); in setQuadBounds()
DSkPathOpsCubic.h131 double top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const;
DSkPathOpsCubic.cpp721 double SkDCubic::top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const { in top() argument
727 SkDPoint mid = dCurve.ptAtT(t); in top()