Examples of polygonXZ()


Examples of org.osm2world.core.math.AxisAlignedBoundingBoxXZ.polygonXZ()

    for (TerrainBoundaryWorldObject tb :
      map.getWorldObjects(TerrainBoundaryWorldObject.class)) {
     
      AxisAlignedBoundingBoxXZ box = tb.getAxisAlignedBoundingBoxXZ();
      if (box != null) {
        PolygonXZ polygon = box.polygonXZ();
        target.drawLineLoop(BB_COLOR, 1, polygon.xyz(0).getVertices());
      }
     
    }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.