Home | History | Annotate | Download | only in util

Lines Matching defs:sweep

655                         // (rx ry x-axis-rotation large-arc-flag sweep-flag x y)
756 double sweep = (eta1 - eta0);
757 if (isPositiveArc != (sweep >= 0)) {
758 if (sweep > 0) {
759 sweep -= 2 * Math.PI;
761 sweep += 2 * Math.PI;
772 "cx, cy, a, b, x0, y0, thetaD, eta0, sweep = " + cx + " , "
775 + Math.toDegrees(eta0) + " , " + Math.toDegrees(sweep));
777 arcToBezier(p, cx, cy, a, b, x0, y0, thetaD, eta0, sweep);
793 * @param sweep The angle (positive or negative) of the sweep of the arc on the ellipse
797 double sweep) {
802 int numSegments = (int) Math.ceil(Math.abs(sweep * 4 / Math.PI));
813 double anglePerSegment = sweep / numSegments;