src.gov.nasa.worldwindx.performance.PolygonsEverywhere Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind Show documentation
Show all versions of worldwind Show documentation
World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.
/*
* Copyright (C) 2012 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration.
* All Rights Reserved.
*/
package gov.nasa.worldwindx.performance;
import gov.nasa.worldwind.WorldWind;
import gov.nasa.worldwindx.examples.ApplicationTemplate;
import gov.nasa.worldwind.geom.Position;
import gov.nasa.worldwind.layers.RenderableLayer;
import gov.nasa.worldwind.render.*;
import java.util.ArrayList;
/**
* @author tag
* @version $Id: PolygonsEverywhere.java 968 2012-12-06 02:52:49Z dcollins $
*/
public class PolygonsEverywhere extends ApplicationTemplate
{
public static class AppFrame extends ApplicationTemplate.AppFrame
{
public AppFrame()
{
super(true, true, false);
makeMany();
}
protected void makeMany()
{
int altitudeMode = WorldWind.ABSOLUTE;
double minLat = -50, maxLat = 50, minLon = -140, maxLon = -10;
double delta = 1.5;
double intervals = 5;
double dLat = 1 / intervals;
double dLon = 1 / intervals;
ArrayList positions = new ArrayList();
RenderableLayer layer = new RenderableLayer();
layer.setPickEnabled(false);
int count = 0;
for (double lat = minLat; lat <= maxLat; lat += delta)
{
for (double lon = minLon; lon <= maxLon; lon += delta)
{
positions.clear();
double innerLat = lat;
double innerLon = lon;
for (int i = 0; i <= intervals; i++)
{
innerLon += dLon;
positions.add(Position.fromDegrees(innerLat, innerLon, 5e4));
}
for (int i = 0; i <= intervals; i++)
{
innerLat += dLat;
positions.add(Position.fromDegrees(innerLat, innerLon, 5e4));
}
for (int i = 0; i <= intervals; i++)
{
innerLon -= dLon;
positions.add(Position.fromDegrees(innerLat, innerLon, 5e4));
}
for (int i = 0; i <= intervals; i++)
{
innerLat -= dLat;
positions.add(Position.fromDegrees(innerLat, innerLon, 5e4));
}
Polygon pgon = new Polygon(positions);
pgon.setAltitudeMode(altitudeMode);
ShapeAttributes attrs = new BasicShapeAttributes();
attrs.setDrawOutline(false);
attrs.setInteriorMaterial(Material.RED);
attrs.setEnableLighting(true);
pgon.setAttributes(attrs);
layer.addRenderable(pgon);
++count;
}
}
System.out.printf("%d Polygons, %d positions each, Altitude mode = %s\n", count, positions.size(),
altitudeMode == WorldWind.RELATIVE_TO_GROUND ? "RELATIVE_TO_GROUND" : "ABSOLUTE");
insertBeforeCompass(getWwd(), layer);
this.getLayerPanel().update(this.getWwd());
}
}
public static void main(String[] args)
{
ApplicationTemplate.start("World Wind Very Many Polygons", AppFrame.class);
}
}