Explicitely initialize planets.

This commit is contained in:
curt 2003-06-26 17:13:27 +00:00
parent 8a2e5cace8
commit 7f4f778bb1

View File

@ -23,6 +23,8 @@
// $Id$ // $Id$
#include <iostream>
#include "ephemeris.hxx" #include "ephemeris.hxx"
@ -37,6 +39,10 @@ SGEphemeris::SGEphemeris( const string &path ) {
saturn = new Saturn; saturn = new Saturn;
uranus = new Uranus; uranus = new Uranus;
neptune = new Neptune; neptune = new Neptune;
nplanets = 7;
for ( int i = 0; i < nplanets; ++i ) {
sgdSetVec3( planets[i], 0.0, 0.0, 0.0 );
}
stars = new SGStarData( SGPath(path) ); stars = new SGStarData( SGPath(path) );
} }