2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
7 package gov
.nasa
.worldwind
;
9 import gov
.nasa
.worldwind
.globes
.*;
10 import gov
.nasa
.worldwind
.layers
.LayerList
;
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();
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
);