~ubuntu-branches/debian/squeeze/stellarium/squeeze

« back to all changes in this revision

Viewing changes to src/planetsephems/stellplanet.h

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2008-05-19 21:28:23 UTC
  • mfrom: (3.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080519212823-m5nfiuntxstxzxj7
Tags: 0.9.1-4
Add libxcursor-dev, libxfixes-dev, libxinerama-dev, libqt4-opengl-dev to
build-deps (Closes: #479906)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (C) 2000 Liam Girdwood <liam@nova-ioe.org>
 
3
Copyright (C) 2003 Fabien Chereau
 
4
 
 
5
This program is free software; you can redistribute it and/or modify
 
6
it under the terms of the GNU Library General Public License as published by
 
7
the Free Software Foundation; either version 2 of the License, or
 
8
(at your option) any later version.
 
9
 
 
10
This program is distributed in the hope that it will be useful,
 
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
GNU General Public License for more details.
 
14
 
 
15
You should have received a copy of the GNU General Public License
 
16
along with this program; if not, write to the Free Software
 
17
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
*/
 
19
 
 
20
#ifndef _STELLPLANET_H_
 
21
#define _STELLPLANET_H_
 
22
 
 
23
#ifdef __cplusplus
 
24
extern "C" {
 
25
#endif
 
26
 
 
27
void get_sun_helio_coordsv(double jd,double xyz[3]);
 
28
 
 
29
void get_mercury_helio_coordsv(double jd,double xyz[3]);
 
30
void get_venus_helio_coordsv(double jd,double xyz[3]);
 
31
void get_earth_helio_coordsv(double jd,double xyz[3]);
 
32
void get_mars_helio_coordsv(double jd,double xyz[3]);
 
33
void get_jupiter_helio_coordsv(double jd,double xyz[3]);
 
34
void get_saturn_helio_coordsv(double jd,double xyz[3]);
 
35
void get_uranus_helio_coordsv(double jd,double xyz[3]);
 
36
void get_neptune_helio_coordsv(double jd,double xyz[3]);
 
37
void get_pluto_helio_coordsv(double jd,double xyz[3]);
 
38
 
 
39
void get_mercury_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
40
void get_venus_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
41
void get_earth_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
42
void get_mars_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
43
void get_jupiter_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
44
void get_saturn_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
45
void get_uranus_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
46
void get_neptune_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
47
void get_pluto_helio_osculating_coords(double jd0,double jd,double xyz[3]);
 
48
 
 
49
void get_lunar_parent_coordsv(double jd,double xyz[3]);
 
50
 
 
51
void get_phobos_parent_coordsv(double jd,double xyz[3]);
 
52
void get_deimos_parent_coordsv(double jd,double xyz[3]);
 
53
 
 
54
void get_io_parent_coordsv(double jd,double xyz[3]);
 
55
void get_europa_parent_coordsv(double jd,double xyz[3]);
 
56
void get_ganymede_parent_coordsv(double jd,double xyz[3]);
 
57
void get_callisto_parent_coordsv(double jd,double xyz[3]);
 
58
 
 
59
void get_mimas_parent_coordsv(double jd,double xyz[3]);
 
60
void get_enceladus_parent_coordsv(double jd,double xyz[3]);
 
61
void get_tethys_parent_coordsv(double jd,double xyz[3]);
 
62
void get_dione_parent_coordsv(double jd,double xyz[3]);
 
63
void get_rhea_parent_coordsv(double jd,double xyz[3]);
 
64
void get_titan_parent_coordsv(double jd,double xyz[3]);
 
65
void get_hyperion_parent_coordsv(double jd,double xyz[3]);
 
66
void get_iapetus_parent_coordsv(double jd,double xyz[3]);
 
67
 
 
68
void get_miranda_parent_coordsv(double jd,double xyz[3]);
 
69
void get_ariel_parent_coordsv(double jd,double xyz[3]);
 
70
void get_umbriel_parent_coordsv(double jd,double xyz[3]);
 
71
void get_titania_parent_coordsv(double jd,double xyz[3]);
 
72
void get_oberon_parent_coordsv(double jd,double xyz[3]);
 
73
 
 
74
#ifdef __cplusplus
 
75
}
 
76
#endif
 
77
 
 
78
 
 
79
#endif /* _STELLPLANET_H_ */