Movement: Astronomy and Orrery watch faces (#55)

This commit is contained in:
joeycastillo
2022-03-04 14:52:49 -06:00
committed by GitHub
parent ea988208e1
commit ccdf08da87
19 changed files with 4559 additions and 3 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_MILLI
#define VSOP87A_MILLI
void vsop87a_milli_getEarth(double t,double temp[]);
void vsop87a_milli_getEmb(double t,double temp[]);
void vsop87a_milli_getJupiter(double t,double temp[]);
void vsop87a_milli_getMars(double t,double temp[]);
void vsop87a_milli_getMercury(double t,double temp[]);
void vsop87a_milli_getNeptune(double t,double temp[]);
void vsop87a_milli_getSaturn(double t,double temp[]);
void vsop87a_milli_getUranus(double t,double temp[]);
void vsop87a_milli_getVenus(double t,double temp[]);
void vsop87a_milli_getMoon(double earth[], double emb[],double temp[]);
#endif