'movement' -> 'legacy' to signal things we still need to bring in

This commit is contained in:
Joey Castillo
2024-11-27 10:56:50 -05:00
parent bc08c5a05e
commit 9719567047
221 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
//VSOP87-Multilang http://www.astrogreg.com/vsop87-multilang/index.html
//Greg Miller (gmiller@gregmiller.net) 2019. Released as Public Domain
#ifndef VSOP87A_MICRO
#define VSOP87A_MICRO
void vsop87a_micro_getEarth(double t,double temp[]);
void vsop87a_micro_getEmb(double t,double temp[]);
void vsop87a_micro_getJupiter(double t,double temp[]);
void vsop87a_micro_getMars(double t,double temp[]);
void vsop87a_micro_getMercury(double t,double temp[]);
void vsop87a_micro_getNeptune(double t,double temp[]);
void vsop87a_micro_getSaturn(double t,double temp[]);
void vsop87a_micro_getUranus(double t,double temp[]);
void vsop87a_micro_getVenus(double t,double temp[]);
void vsop87a_micro_getMoon(double earth[], double emb[],double temp[]);
#endif