Package gwt.g2d.client.graphics.visitor

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


  /**
   * Clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotate(double angle) {
    return append(new RotateVisitor(angle));
  }
View Full Code Here


  /**
   * Counter-clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotateCcw(double angle) {
    return append(new RotateVisitor(-angle));
  }
View Full Code Here

  /**
   * Clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotate(double angle) {
    return append(new RotateVisitor(angle));
  }
View Full Code Here

  /**
   * Counter-clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotateCcw(double angle) {
    return append(new RotateVisitor(-angle));
  }
View Full Code Here

  /**
   * Clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotate(double angle) {
    return append(new RotateVisitor(angle));
  }
View Full Code Here

  /**
   * Counter-clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotateCcw(double angle) {
    return append(new RotateVisitor(-angle));
  }
View Full Code Here

  /**
   * Clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotate(double angle) {
    return append(new RotateVisitor(angle));
  }
View Full Code Here

  /**
   * Counter-clockwise rotation.
   * @see RotateVisitor#RotateVisitor(double)
   */
  public final ShapeBuilder rotateCcw(double angle) {
    return append(new RotateVisitor(-angle));
  }
View Full Code Here

TOP

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

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.