Searched defs:sweep (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/util/
H A DPathParser.java501 // (rx ry x-axis-rotation large-arc-flag sweep-flag x y)
603 double sweep = (eta1 - eta0);
604 if (isPositiveArc != (sweep >= 0)) {
605 if (sweep > 0) {
606 sweep -= 2 * Math.PI;
608 sweep += 2 * Math.PI;
618 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep);
633 * @param sweep The angle (positive or negative) of the sweep of the arc on the ellipse
644 double sweep) {
635 arcToBezier(Path p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DPathParser.java529 // (rx ry x-axis-rotation large-arc-flag sweep-flag x y)
631 double sweep = (eta1 - eta0);
632 if (isPositiveArc != (sweep >= 0)) {
633 if (sweep > 0) {
634 sweep -= 2 * Math.PI;
636 sweep += 2 * Math.PI;
646 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep);
661 * @param sweep The angle (positive or negative) of the sweep of the arc on the ellipse
672 double sweep) {
663 arcToBezier(Path p, double cx, double cy, double a, double b, double e1x, double e1y, double theta, double start, double sweep) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1179 * <p>If the sweep angle is >= 360, then the oval is drawn
1181 * treats the sweep angle modulo 360. If the sweep angle is negative,
1182 * the sweep angle is treated as sweep angle modulo 360</p>
1208 * <p>If the sweep angle is >= 360, then the oval is drawn
1210 * treats the sweep angle modulo 360. If the sweep angle is negative,
1211 * the sweep angle is treated as sweep angl
2057 native_drawArc(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java639 final float startAngle, final float sweep,
650 -startAngle, -sweep,
637 native_drawArc(long nativeCanvas, final float left, final float top, final float right, final float bottom, final float startAngle, final float sweep, final boolean useCenter, long paint) argument

Completed in 345 milliseconds