Searched refs:thetaD (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/libs/hwui/utils/ |
D | VectorDrawableUtils.cpp | 182 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/ |
D | PathParser_Delegate.java | 702 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/ |
D | PathParser.java | 604 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()
|