backup some changes:
[demo] / src / camera.h
1 #ifndef CAMERA_H_
2 #define CAMERA_H_
3
4 #include <gmath/gmath.h>
5
6 class Camera {
7 public:
8         float phi;
9         float theta;
10         float distance;
11
12         Mat4 m_projection;
13         float fov;
14
15         Camera();
16         Camera(float phi, float theta, float distance, float fov);
17         ~Camera();
18 };
19
20 #endif // CAMERA_H_