All Classes Functions
MovementParams.h
1 #ifndef MovementParams_H
2 #define MovementParams_H
3 
4 #include <orbitersdk.h>
5 #include "Systems/Point.hpp"
6 
8 {
9  MovementParams( const VESSEL * vessel );
10 
11  void Update( const VESSEL * vessel );
12 
13  VECTOR3 m_pos, m_vel;
14  double m_velMod;
15  EnjoLib::Point current_vel;
16  double current_vel_module;
17  double m_lon, m_lat, m_rad;
18  ELEMENTS ele;
19  ORBITPARAM opar;
20  VESSELSTATUS2 vesselStatus;
21 
22 };
23 
24 #endif // MovementParams_H