All Classes Functions
GreatCircleAnimated.h
1 #ifndef GREATCIRCLEANIMATED_H
2 #define GREATCIRCLEANIMATED_H
3 
4 #include "GreatCircle.h"
5 #include "PID/PID.hpp"
6 
7 
9 {
10  public:
12  virtual ~GreatCircleAnimated();
13 
14  void ZoomIn();
15  void ZoomOut();
16  void Update( MyDC hDC, int W, int H, MFDDataLaunchMFD * data );
17 
18  protected:
19  void AutoZoomVirtual();
20 
21  private:
22  void UpdateZoom();
23 
24  double m_tgtZoom;
25  static double m_prevTime;
26  EnjoLib::PID m_pidZoomVel;
27 };
28 
29 #endif // GREATCIRCLEANIMATED_H