From: curt Date: Tue, 29 Feb 2000 23:31:32 +0000 (+0000) Subject: Working on skydome ... some actual progress has been made. :-) Still X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=41218272c447b7f7a93e5df39d620755022f20e2;p=simgear.git Working on skydome ... some actual progress has been made. :-) Still something goofy with sunrise, sunset effects. --- diff --git a/simgear/ephemeris/Makefile.am b/simgear/ephemeris/Makefile.am index 0d21c976..efca10b8 100644 --- a/simgear/ephemeris/Makefile.am +++ b/simgear/ephemeris/Makefile.am @@ -9,7 +9,7 @@ libAstro_a_SOURCES = \ neptune.cxx neptune.hxx \ pluto.hxx \ saturn.cxx saturn.hxx \ - sky.cxx sky.hxx \ + skydome.cxx skydome.hxx \ solarsystem.cxx solarsystem.hxx \ star.cxx star.hxx \ stars.cxx stars.hxx \ diff --git a/simgear/ephemeris/sky.cxx b/simgear/ephemeris/sky.cxx deleted file mode 100644 index a8d8bca7..00000000 --- a/simgear/ephemeris/sky.cxx +++ /dev/null @@ -1,809 +0,0 @@ -// sky.cxx -- model sky with an upside down "bowl" -// -// Written by Curtis Olson, started December 1997. -// -// Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com -// -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License as -// published by the Free Software Foundation; either version 2 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -// -// $Id$ - - -#ifdef HAVE_CONFIG_H -# include -#endif - -#ifdef HAVE_WINDOWS_H -# include -#endif - -#include - -#include -#include - -#include -#include -#include - -#include -#include -#include
-#include