🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
AxesBodyInertial.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AstCore/AxesBodyRelated.hpp"
25
26AST_NAMESPACE_BEGIN
27
33class CelestialBody;
34class BodyOrientation;
35class AxesBodyInertial;
36using PAxesBodyInertial = AxesBodyInertial*;
37using HAxesBodyInertial = SharedPtr<AxesBodyInertial>;
38
39
41class AST_CORE_API AxesBodyInertial : public AxesBodyRelated
42{
43public:
44 static PAxesBodyInertial New(CelestialBody* body);
45 static HAxesBodyInertial NewShared(CelestialBody* body);
46
47 using AxesBodyRelated::AxesBodyRelated;
48 Axes* getParent() const override;
49 errc_t getTransform(const TimePoint& tp, Rotation& rotation) const override;
50 errc_t getTransform(const TimePoint& tp, KinematicRotation& rotation) const override;
51};
52
55AST_NAMESPACE_END
天体惯性轴系
定义 AxesBodyInertial.hpp:42
天体相关的轴系
定义 AxesBodyRelated.hpp:37
轴系类
定义 Axes.hpp:70
virtual Axes * getParent() const =0
获取当前轴系的父轴系
virtual errc_t getTransform(const TimePoint &tp, Rotation &rotation) const =0
获取当前轴系相对于父轴系的旋转信息
天体
定义 CelestialBody.hpp:52
运动学坐标系旋转
定义 KinematicRotation.hpp:32
坐标系旋转类
定义 Rotation.hpp:39
共享指针
定义 SharedPtr.hpp:33
绝对时间点
定义 TimePoint.hpp:106