HomeSort by relevance Sort by last modified time
    Searched defs:Rectangle2D (Results 1 - 4 of 4) sorted by null

  /frameworks/base/awt/java/awt/geom/
Rectangle2D.java 30 * The Class Rectangle2D represents a rectangle whose coordinates are given with
35 public abstract class Rectangle2D extends RectangularShape {
62 * The Class Float is the subclass of Rectangle2D that represents a
68 public static class Float extends Rectangle2D {
165 public void setRect(Rectangle2D r) {
196 public Rectangle2D getBounds2D() {
201 public Rectangle2D createIntersection(Rectangle2D r) {
202 Rectangle2D dst;
204 dst = new Rectangle2D.Double()
    [all...]
Area.java 27 import java.awt.geom.Rectangle2D;
114 public boolean contains(Rectangle2D r) {
138 public boolean intersects(Rectangle2D r) {
149 public Rectangle2D getBounds2D() {
150 return s == null ? new Rectangle2D.Double() : s.getBounds2D();
187 * Extracts a Rectangle2D from the source shape if the underlying shape data
190 * @return a Rectangle2D object if the source shape is rectangle, or null if
193 Rectangle2D extractRectangle() {
212 return new Rectangle2D.Float(points[0], points[1], points[2] - points[0], points[7]
222 * @see java.awt.geom.Rectangle2D#intersect(Rectangle2D, Rectangle2D
    [all...]
  /frameworks/base/awt/java/awt/
Rectangle.java 24 import java.awt.geom.Rectangle2D;
38 public class Rectangle extends Rectangle2D implements Shape, Serializable {
300 * @see java.awt.geom.Rectangle2D#setRect(double, double, double, double)
357 * Gets the bounds of the original rectangle as a Rectangle2D object.
359 * @return the Rectangle2D object which represents the bounds of the
361 * @see java.awt.geom.Rectangle2D#getBounds2D()
364 public Rectangle2D getBounds2D() {
563 * Rectangle2D.
566 * the Rectangle2D object.
567 * @return the Rectangle2D object that is the result of intersecting th
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
TextRunBreaker.java 27 import java.awt.geom.Rectangle2D;
635 public Rectangle2D getVisualBounds() {
636 Rectangle2D bounds = null;
641 Rectangle2D.union(bounds, s.getVisualBounds(), bounds);
654 public Rectangle2D getLogicalBounds() {
655 Rectangle2D bounds = null;
660 Rectangle2D.union(bounds, s.getLogicalBounds(), bounds);
728 Rectangle2D bounds = segment.getVisualBounds();

Completed in 6608 milliseconds