54a6bdd6f8
Volunteers for maintaining it when 0.5 comes out?
112 lines
2.7 KiB
C++
112 lines
2.7 KiB
C++
--- src/castor/venus.cc.orig Sat Nov 5 12:49:48 2005
|
|
+++ src/castor/venus.cc Sat Nov 5 12:51:06 2005
|
|
@@ -15,7 +15,7 @@
|
|
// Copyright 2003 Liam Girdwood
|
|
|
|
#include "venus.hh"
|
|
-#include <libnova.h>
|
|
+#include <libnova/libnova.h>
|
|
|
|
namespace Castor
|
|
{
|
|
@@ -30,7 +30,7 @@
|
|
|
|
double Venus::get_disk (double JD)
|
|
{
|
|
- return get_venus_disk(JD);
|
|
+ return ln_get_venus_disk(JD);
|
|
}
|
|
|
|
/*! \fn void Venus::get_equ_posn (double JD, ln_equ_posn* posn)
|
|
@@ -39,7 +39,7 @@
|
|
void Venus::get_equ_posn (double JD, double& ra, double& dec)
|
|
{
|
|
struct ln_equ_posn equ;
|
|
- get_venus_equ_coords (JD, &equ);
|
|
+ ln_get_venus_equ_coords (JD, &equ);
|
|
ra = equ.ra;
|
|
dec = equ.dec;
|
|
}
|
|
@@ -51,8 +51,8 @@
|
|
{
|
|
struct ln_equ_posn equ;
|
|
|
|
- get_venus_equ_coords (JD, &equ);
|
|
- get_hrz_from_equ (&equ, observer, JD, posn);
|
|
+ ln_get_venus_equ_coords (JD, &equ);
|
|
+ ln_get_hrz_from_equ (&equ, observer, JD, posn);
|
|
}
|
|
|
|
/*! \fn void Venus::get_rst_time (double JD, ln_lnlat_posn* observer, ln_rst_time* time)
|
|
@@ -60,7 +60,7 @@
|
|
*/
|
|
void Venus::get_rst_time (double JD, ln_lnlat_posn* observer, ln_rst_time* time)
|
|
{
|
|
- get_venus_rst(JD, observer, time);
|
|
+ ln_get_venus_rst(JD, observer, time);
|
|
}
|
|
|
|
/*! \fn double Venus::get_mag(double JD)
|
|
@@ -70,7 +70,7 @@
|
|
{
|
|
if (JD == 0)
|
|
JD = m_render_JD;
|
|
- return get_venus_magnitude (JD);
|
|
+ return ln_get_venus_magnitude (JD);
|
|
}
|
|
|
|
/*! \fn void Venus::get_id(std::string& id)
|
|
@@ -102,7 +102,7 @@
|
|
void Venus::render(double x, double y, double mag_max, Gnome::Canvas::Group& group, bool bright, double ppd)
|
|
{
|
|
// draw object on canvas
|
|
- double size = (mag_max + 1) - get_venus_magnitude(m_render_JD);
|
|
+ double size = (mag_max + 1) - ln_get_venus_magnitude(m_render_JD);
|
|
double sdiam = (get_equ_sdiam(m_render_JD) / 240.0) * ppd;
|
|
if (size < sdiam)
|
|
size = sdiam;
|
|
@@ -125,37 +125,37 @@
|
|
|
|
double Venus::get_earth_dist (double JD)
|
|
{
|
|
- return get_venus_earth_dist(JD);
|
|
+ return ln_get_venus_earth_dist(JD);
|
|
}
|
|
|
|
double Venus::get_sun_dist (double JD)
|
|
{
|
|
- return get_venus_sun_dist(JD);
|
|
+ return ln_get_venus_solar_dist(JD);
|
|
}
|
|
|
|
double Venus::get_equ_sdiam (double JD)
|
|
{
|
|
- return get_venus_sdiam(JD);
|
|
+ return ln_get_venus_sdiam(JD);
|
|
}
|
|
|
|
double Venus::get_pol_sdiam (double JD)
|
|
{
|
|
- return get_venus_sdiam(JD);
|
|
+ return ln_get_venus_sdiam(JD);
|
|
}
|
|
|
|
void Venus::get_helio_coords (double JD, struct ln_helio_posn * position)
|
|
{
|
|
- get_venus_helio_coords (JD, position);
|
|
+ ln_get_venus_helio_coords (JD, position);
|
|
}
|
|
|
|
double Venus::get_phase (double JD)
|
|
{
|
|
- return get_venus_phase (JD);
|
|
+ return ln_get_venus_phase (JD);
|
|
}
|
|
|
|
void Venus::get_rect_helio (double JD, struct ln_rect_posn * position)
|
|
{
|
|
- get_venus_rect_helio (JD, position);
|
|
+ ln_get_venus_rect_helio (JD, position);
|
|
}
|
|
|
|
void Venus::set_render_jd (double JD)
|