Package com.googlecode.jumpnevolve.math

Examples of com.googlecode.jumpnevolve.math.Rectangle


  @Override
  public Rectangle getWantedSize() {
    Shape head = this.headlineCon.getNeededSize(), main = this.mainCon
        .getNeededSize();
    return new Rectangle(Vector.ZERO, Math.max(head.getXRange(),
        main.getXRange()), head.getYRange() + main.getYRange());
  }
View Full Code Here


  @Override
  public Rectangle getWantedSize() {
    float height = (InterfaceTextButton.getSize() + this.distanceBetweenButtons)
        * (this.numberOfButtonsDisplayed + 2)
        - this.distanceBetweenButtons;
    return new Rectangle(Vector.ZERO, this.maxWidth, height);
  }
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.math.Rectangle

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.