Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/subprojects/importer/framework.h @ 4263

Last change on this file since 4263 was 4263, checked in by bensch, 19 years ago

orxonox/trunk: building subprojects externaly

File size: 553 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 "vector.h"
7
8class Vector;
9
10float rotatorP;
11float rotatorV;
12
13float dist;
14float zoomTo;
15
16Uint32 lastFrame;
17Uint32 currFrame;
18Uint32 dt;
19
20
21Vector dir;
22Vector up;
23
24float matQ[4][4];
25
26Vector M;
27Vector p1;
28Vector p2;
29Vector rotAxis;
30float rotAngle;
31Quaternion rotQ;
32Quaternion rotQlast;
33
34bool mouse1Down;
35
36WindowHandler wHandler;  // Create an instance of the whandler basecode class
37Model* obj;
38
39
40#endif /* _FRAMEWORK_H */
Note: See TracBrowser for help on using the repository browser.