Package urban.shapes

Examples of urban.shapes.Shape


   * @param expression an agent list that represents a shape
   * @param e an energy value
   */
  public ShapeStatement(String id, List<Agent> expression, Double e) {
    this.id = id;
    this.s = new Shape(expression);
    this.e = e;
  }
View Full Code Here

TOP

Related Classes of urban.shapes.Shape

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.