Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/subprojects/particles/framework.h @ 4293

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

orxonox/branches/physics: intoducing state: stors the Camera position globally somewhere we have to store this data

File size: 502 bytes
Line 
1#ifndef _FRAMEWORK_H
2#define _FRAMEWORK_H
3 
4#include "vector.h"
5#include "glincl.h"
6
7float rotatorP;
8float rotatorV;
9
10float dist;
11float zoomTo;
12
13Uint32 lastFrame;
14Uint32 currFrame;
15
16Vector dir;
17Vector up;
18
19float matQ[4][4];
20
21Vector M;
22Vector p1;
23Vector p2;
24Vector rotAxis;
25float rotAngle;
26Quaternion rotQ;
27Quaternion rotQlast;
28
29Uint8* keys; // This variable will be used in the keyboard routine
30bool mouse1Down;
31
32bool mainLoop();
33bool draw();
34bool tick();
35bool keyHandler();
36
37#endif /* _FRAMEWORK_H */
Note: See TracBrowser for help on using the repository browser.