Lines Matching refs:ellipseBounds
189 * @param ellipseBounds The framing rectangle that defines the
198 public Float(Rectangle2D ellipseBounds,
201 this.x = (float) ellipseBounds.getX();
202 this.y = (float) ellipseBounds.getY();
203 this.width = (float) ellipseBounds.getWidth();
204 this.height = (float) ellipseBounds.getHeight();
482 * @param ellipseBounds The framing rectangle that defines the
491 public Double(Rectangle2D ellipseBounds,
494 this.x = ellipseBounds.getX();
495 this.y = ellipseBounds.getY();
496 this.width = ellipseBounds.getWidth();
497 this.height = ellipseBounds.getHeight();