🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
AstCoreC.h
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24
25#if !defined __cplusplus
26
27typedef struct AVector3d
28{
29 double x_, y_, z_;
30} AVector3d;
31
32typedef struct AMatrix3d
33{
34 double data_[3][3];
35} AMatrix3d;
36
37#endif
38
39
40AST_CORE_CAPI int aTwoBodyProp(double dt, double gm, AVector3d* pos, AVector3d* vel);
定义 AstCoreC.h:33
定义 AstCoreC.h:28