Package wolf.city.buildings

Examples of wolf.city.buildings.Building


   */
  public static void main(String[] args) {
   
    String geomString = "POLYGON((-1944 1909 0, -1944 1884 0, -1966 1784 0, -1966 1909 0, -1944 1909 0))";
    try {
      BuildingView bv = new BuildingView(new Building(geomString));
      while(bv.draw());
    } catch (ParseException e) {
      e.printStackTrace();
      System.err.println("Polygon not correctly formed!");
    }
View Full Code Here

TOP

Related Classes of wolf.city.buildings.Building

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.