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
;
11 * @version $Id: Renderable.java 403 2006-12-13 02:33:18Z ericdalgliesh $
13 public interface Renderable
16 * Causes this <code>Renderable</code> to render itself using the <code>DrawContext</code> provided. The
17 * <code>DrawContext</code> provides the elevation model, openGl instance, globe and other information required for
18 * drawing. It is recommended that the <code>DrawContext</code> is non-null as most implementations do not support
19 * null <code>DrawContext</code>s.
21 * @param dc the <code>DrawContext</code> to be used
24 public void render(DrawContext dc
);