Lines Matching full:width
83 * The width of the rectangle that contains the arc.
85 public float width;
98 * The width angle of the arc in degrees.
129 * @param width
130 * the width of the rectangle that contains the arc.
136 * the width angle of the arc in degrees.
141 public Float(float x, float y, float width, float height, float start, float extent,
146 this.width = width;
161 * the width angle of the arc in degrees.
170 this.width = (float)bounds.getWidth();
188 return width;
208 return width <= 0.0f || height <= 0.0f;
212 public void setArc(double x, double y, double width, double height, double start,
217 this.width = (float)width;
234 protected Rectangle2D makeBounds(double x, double y, double width, double height) {
235 return new Rectangle2D.Float((float)x, (float)y, (float)width, (float)height);
262 * The width of the rectangle that contains the arc.
264 public double width;
277 * The width angle of the arc in degrees.
308 * @param width
309 * the width of the rectangle that contains the arc.
315 * the width angle of the arc in degrees.
320 public Double(double x, double y, double width, double height, double start, double extent,
325 this.width = width;
340 * the width angle of the arc in degrees.
349 this.width = bounds.getWidth();
367 return width;
387 return width <= 0.0 || height <= 0.0;
391 public void setArc(double x, double y, double width, double height, double start,
396 this.width = width;
413 protected Rectangle2D makeBounds(double x, double y, double width, double height) {
414 return new Rectangle2D.Double(x, y, width, height);
436 * Half of the width of the arc's bounding rectangle (the radius in the
439 double width;
532 if (width < 0 || height < 0) {
539 this.width = a.getWidth() / 2.0;
541 this.x = a.getX() + width;
594 kx = k * width * sin;
596 coords[0] = mx = x + cos * width;
606 kx = k * width * sin;
608 coords[4] = mx = x + cos * width;
639 kx = k * width * sin;
641 coords[0] = (float)(mx = x + cos * width);
651 kx = k * width * sin;
653 coords[4] = (float)(mx = x + cos * width);
700 * @param width
701 * the width of the bounding rectangle.
706 protected abstract Rectangle2D makeBounds(double x, double y, double width, double height);
716 * Gets the width angle.
718 * @return the width angle.
731 * Sets the width angle.
734 * the new width angle.
747 * @param width
748 * the width of the rectangle that contains the arc.
754 * the width angle of the arc in degrees.
759 public abstract void setArc(double x, double y, double width, double height, double start,
838 public void setFrame(double x, double y, double width, double height) {
839 setArc(x, y, width, height, getAngleStart(), getAngleExtent(), type);
852 * the angle width of the arc in degrees.
869 * the angle width of the arc in degrees.
901 * the angle width of the arc in degrees.