Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/utils/
DVectorDrawableUtils.cpp182 double thetaD = toRadians(theta); in drawArc() local
184 double cosTheta = cos(thetaD); in drawArc()
185 double sinTheta = sin(thetaD); in drawArc()
244 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep); in drawArc()
/frameworks/base/tools/layoutlib/bridge/src/android/util/
DPathParser_Delegate.java702 double thetaD = theta * Math.PI / 180.0f; in drawArc() local
704 double cosTheta = Math.cos(thetaD); in drawArc()
705 double sinTheta = Math.sin(thetaD); in drawArc()
771 + " , " + Math.toDegrees(thetaD) + " , " in drawArc()
774 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep); in drawArc()
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
DPathParser.java604 double thetaD = Math.toRadians(theta); in drawArc() local
606 double cosTheta = Math.cos(thetaD); in drawArc()
607 double sinTheta = Math.sin(thetaD); in drawArc()
666 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep); in drawArc()