Update to Worldwind release 0.4.1
[worldwind-tracker.git] / gov / nasa / worldwind / Model.java
blob0b0405b990acd4871180cf87a517d59cc45e036b
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
7 package gov.nasa.worldwind;
9 import gov.nasa.worldwind.globes.*;
10 import gov.nasa.worldwind.layers.LayerList;
12 /**
13 * @author Tom Gaskins
14 * @version $Id: Model.java 3489 2007-11-13 00:36:18Z tgaskins $
16 public interface Model extends WWObject
18 gov.nasa.worldwind.geom.Extent getExtent();
20 Globe getGlobe();
22 LayerList getLayers();
24 void setGlobe(Globe globe);
26 void setLayers(LayerList layers);
28 void setShowWireframeInterior(boolean show);
30 void setShowWireframeExterior(boolean show);
32 boolean isShowWireframeInterior();
34 boolean isShowWireframeExterior();
36 boolean isShowTessellationBoundingVolumes();
38 void setShowTessellationBoundingVolumes(boolean showTileBoundingVolumes);