Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/levelloader/src/lib/graphics/importer/framework.h @ 3499

Last change on this file since 3499 was 3499, checked in by chris, 19 years ago

orxonox/branches/levelloader: merged updated trunk structure into levelloader branch

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