Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/heightMap/src/lib/graphics/importer/framework.h @ 4165

Last change on this file since 4165 was 4090, checked in by nico, 19 years ago

branches/heightMap: some makefile and include stuff fixed

File size: 576 bytes
Line 
1#ifndef _FRAMEWORK_H
2#define _FRAMEWORK_H
3 
4#include "windowHandler.h" // Include the Whandler Basecode
5#include "objModel.h"
6#include "heightmap.h"
7#include "vector.h"
8
9class Vector;
10
11float rotatorP;
12float rotatorV;
13
14float dist;
15float zoomTo;
16
17Uint32 lastFrame;
18Uint32 currFrame;
19Uint32 dt;
20
21
22Vector dir;
23Vector up;
24
25float matQ[4][4];
26
27Vector M;
28Vector p1;
29Vector p2;
30Vector rotAxis;
31float rotAngle;
32Quaternion rotQ;
33Quaternion rotQlast;
34
35bool mouse1Down;
36
37WindowHandler wHandler;  // Create an instance of the whandler basecode class
38Model* obj;
39
40
41#endif /* _FRAMEWORK_H */
Note: See TracBrowser for help on using the repository browser.