Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/trackManager/src/lib/graphics/importer/framework.h @ 3498

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

orxonox/branches/trackManager: merged trunk back to tracManager R3440:3497 → 3498
merged with command:
svn merge ../trunk/ trackManager/ -r 3430:HEAD
conflicts resolved in favor of the Trunk

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.