]> git.mxchange.org Git - simgear.git/blob - Astro/planets.hxx
9076b0ff7cceb96e1bda4111fd12abd326926224
[simgear.git] / Astro / planets.hxx
1 /**************************************************************************
2  * planets.hxx
3  *
4  * Written 1997 by Durk Talsma, started October, 1997.  For the flight gear
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * $Id$
22  * (Log is kept at end of this file)
23  **************************************************************************/
24
25
26 #ifndef _PLANETS_HXX
27 #define _PLANETS_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 struct CelestialCoord fgCalculatePlanet(struct OrbElements planet,
36                                         struct OrbElements theSun,
37                                         fgTIME t, int idx);
38
39
40 void fgPlanetsInit( void );
41 void fgPlanetsRender( void );
42
43
44 #endif /* PLANETS_HXX */
45
46
47 /* $Log$
48 /* Revision 1.2  1998/04/28 01:19:02  curt
49 /* Type-ified fgTIME and fgVIEW
50 /*
51  * Revision 1.1  1998/04/22 13:21:32  curt
52  * C++ - ifing the code a bit.
53  *
54  * Revision 1.5  1998/04/21 17:02:31  curt
55  * Prepairing for C++ integration.
56  *
57  * Revision 1.4  1998/02/12 21:59:38  curt
58  * Incorporated code changes contributed by Charlie Hotchkiss
59  * <chotchkiss@namg.us.anritsu.com>
60  *
61  * Revision 1.3  1998/02/02 20:53:23  curt
62  * To version 0.29
63  *
64  * Revision 1.2  1998/01/22 02:59:28  curt
65  * Changed #ifdef FILE_H to #ifdef _FILE_H
66  *
67  * Revision 1.1  1998/01/07 03:16:18  curt
68  * Moved from .../Src/Scenery/ to .../Src/Astro/
69  *
70  * Revision 1.3  1997/12/30 16:36:53  curt
71  * Merged in Durk's changes ...
72  *
73  * Revision 1.2  1997/12/12 21:41:30  curt
74  * More light/material property tweaking ... still a ways off.
75  *
76  * Revision 1.1  1997/10/25 03:16:11  curt
77  * Initial revision of code contributed by Durk Talsma.
78  *
79  */