My Project
 
Loading...
Searching...
No Matches
compass.h
Go to the documentation of this file.
1#pragma once
2
3#include "image.h"
4
5class Compass :public Image{
6private:
7 static const float RAD_2_G;
8 static const float RADIUS;
9
10 int cell;
11 PointF cellCenter;
12
13 PointF lastScroll;
14
15public:
16 Compass(int cell);
17
18 virtual void update();
19};
virtual void update()
Definition compass.cpp:26
Compass(int cell)
Definition compass.cpp:12
glm::vec2 PointF
Definition define.h:7