Package net.sf.robocode.battle

Examples of net.sf.robocode.battle.BoundingRectangle


    this.battle = battle;
    this.robotSpecification = robotSpecification;

    this.rbSerializer = new RbSerializer();

    this.boundingBox = new BoundingRectangle();
    this.scanArc = new Arc2D.Double();
    this.teamPeer = team;
    this.state = RobotState.ACTIVE;
    this.battleRules = battle.getBattleRules();
View Full Code Here


  private final BoundingRectangle boundingBox;

  public BattleField(int width, int height) {
    super();
    this.boundingBox = new BoundingRectangle(0, 0, width, height);
  }
View Full Code Here

TOP

Related Classes of net.sf.robocode.battle.BoundingRectangle

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.