Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/textEngine/src/lib/graphics/importer/framework.h @ 3780

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

orxonox/branches/textEngine: merged trunk here.
merged with command:
svn merge ../trunk textEngine -r 3467:HEAD
no conflicts

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