blob: a31055f8327dd023dcd7a96648d3cfe7300ab43c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef _CAMERA_H_
#define _CAMERA_H_
/**> HEADER FILES <**/
#ifdef OS9
#include <gl.h>
#else
#include <GL/gl.h>
#endif
#include "Quaternions.h"
class Camera
{
public:
XYZ position;
XYZ oldposition;
XYZ targetoffset;
float rotation, rotation2;
float oldrotation, oldrotation2;
float oldoldrotation, oldoldrotation2;
float visrotation, visrotation2;
void Apply();
};
#endif
|