summary refs log tree commit diff
path: root/src/Camera.h
blob: 72319a3eb689f0e6cdcee0b19abdb32ea20b5800 (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
#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