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