source: proiecte/SolarSim/Java/SolarSim/src/solarsim/renderer/RenderConstants.java @ 152

Last change on this file since 152 was 152, checked in by (none), 14 years ago
File size: 695 bytes
Line 
1package solarsim.renderer;
2
3class RenderConstants {
4    /**
5     * how many states to draw. MAX_STATES==1 - draws only current state, 2 - draws current and previous, etc.
6     */
7    public final static int MAX_STATES = 10000;
8    /**
9     * 150 million km - only the first three planets are visible
10     * 250 million km - only the first four planets are visible
11     * 800 million km - only the first five planets are visible
12     * 1500 million km - only the first six planets are visible
13     */
14    public final static double SCALE_FACTOR = 250E9F;
15    /**
16     * DRAW_EVERY=1 - draws every state, DRAW_EVERY=n - draws one in n states.
17     */
18    public final static int DRAW_EVERY = 1;
19}
Note: See TracBrowser for help on using the repository browser.