Package gwt.g2d.client.graphics.visitor

Examples of gwt.g2d.client.graphics.visitor.RectangleVisitor


 
  /**
   * @see RectangleVisitor#RectangleVisitor(double, double, double, double)
   */
  public final ShapeBuilder drawRect(double x, double y, double width, double height) {
    return append(new RectangleVisitor(x, y, width, height));
  }
View Full Code Here


 
  /**
   * @see RectangleVisitor#RectangleVisitor(Vector2, double, double)
   */
  public final ShapeBuilder drawRect(Vector2 position, double width, double height) {
    return append(new RectangleVisitor(position, width, height));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(Rectangle)
   */
  public final ShapeBuilder drawRect(Rectangle rectangle) {
    return append(new RectangleVisitor(rectangle));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(double, double, double, double)
   */
  public final ShapeBuilder drawRect(double x, double y, double width, double height) {
    return append(new RectangleVisitor(x, y, width, height));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(Vector2, double, double)
   */
  public final ShapeBuilder drawRect(Vector2 position, double width, double height) {
    return append(new RectangleVisitor(position, width, height));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(Rectangle)
   */
  public final ShapeBuilder drawRect(Rectangle rectangle) {
    return append(new RectangleVisitor(rectangle));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(double, double, double, double)
   */
  public final ShapeBuilder drawRect(double x, double y, double width, double height) {
    return append(new RectangleVisitor(x, y, width, height));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(Vector2, double, double)
   */
  public final ShapeBuilder drawRect(Vector2 position, double width, double height) {
    return append(new RectangleVisitor(position, width, height));
  }
View Full Code Here

 
  /**
   * @see RectangleVisitor#RectangleVisitor(Rectangle)
   */
  public final ShapeBuilder drawRect(Rectangle rectangle) {
    return append(new RectangleVisitor(rectangle));
  }
View Full Code Here

TOP

Related Classes of gwt.g2d.client.graphics.visitor.RectangleVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.