Fix retrograd movements and earth rotation

This commit is contained in:
Tim Schubert 2020-08-18 20:28:50 +02:00
parent b4eb471eb1
commit 166a920fca
4 changed files with 49 additions and 31 deletions

View file

@ -65,11 +65,6 @@ private:
*/
double m_offset;
/**
* Normal vector of orbital plane.
*/
Vector3D m_plane;
/**
* Current position
*/
@ -112,6 +107,12 @@ private:
*/
Vector CalcPosition (Time t) const;
/**
* Calc the latitude depending on simulation time inside ITRF coordinate
* system
*/
double CalcLatitude () const;
Vector Update ();
};