Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkPathOpsCurve.cpp13 SkDConic dCurve; in setConicBounds() local
14 dCurve.set(curve, curveWeight); in setConicBounds()
16 dRect.setBounds(dCurve, fConic, tStart, tEnd); in setConicBounds()
23 SkDCubic dCurve; in setCubicBounds() local
24 dCurve.set(curve); in setCubicBounds()
26 dRect.setBounds(dCurve, fCubic, tStart, tEnd); in setCubicBounds()
33 SkDQuad dCurve; in setQuadBounds() local
34 dCurve.set(curve); in setQuadBounds()
36 dRect.setBounds(dCurve, fQuad, tStart, tEnd); in setQuadBounds()
DSkPathOpsCubic.h124 double top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const;
DSkPathOpsCubic.cpp685 double SkDCubic::top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const { in top() argument
691 SkDPoint mid = dCurve.ptAtT(t); in top()