?? pluto.h
字號:
/*****************************************************************************\
* Pluto.h
*
* Pluto is a class that can calculate the orbit of Pluto.
* It currently requires data from the file 'vsop.bin'.
*
* author: mark huss (mark@mhuss.com)
* Based on Bill Gray's open-source code at projectpluto.com
*
\*****************************************************************************/
#if !defined( PLUTO__H )
#define PLUTO__H
#define N_COEFFS 36
struct PlutoCoeffs {
char j, s, p, dummyToMaintainAlignment;
short lon_a, lon_b, lat_a, lat_b, rad_a, rad_b;
};
class Pluto {
public:
static void calcAllLocs( double& lat, double& lon, double& r, const double t);
};
#endif /* #if !defined( PLUTO__H ) */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -