🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
AxesBodyRelated.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AstCore/Axes.hpp"
25
26AST_NAMESPACE_BEGIN
27
32class CelestialBody;
33class BodyOrientation;
34
36class AST_CORE_API AxesBodyRelated : public Axes
37{
38public:
39 explicit AxesBodyRelated(CelestialBody* body);
40 ~AxesBodyRelated() override = default;
41
42 AxesBodyRelated(const AxesBodyRelated&) = delete;
43 AxesBodyRelated& operator=(const AxesBodyRelated&) = delete;
44protected:
46 BodyOrientation* getBodyOrientation() const;
47protected:
49};
50
53AST_NAMESPACE_END
天体相关的轴系
定义 AxesBodyRelated.hpp:37
CelestialBody * body_
天体
定义 AxesBodyRelated.hpp:48
轴系抽象基类
定义 Axes.hpp:72
天体姿态/指向
定义 BodyOrientation.hpp:39
天体
定义 CelestialBody.hpp:72