|
Last change
on this file since 3628 was
3427,
checked in by bensch, 21 years ago
|
|
orxonox/trunk/importer: cleaned up the includes, while watching some Monty Python
|
|
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 | |
|---|
| 7 | class Vector; |
|---|
| 8 | |
|---|
| 9 | float rotatorP; |
|---|
| 10 | float rotatorV; |
|---|
| 11 | |
|---|
| 12 | float dist; |
|---|
| 13 | float zoomTo; |
|---|
| 14 | |
|---|
| 15 | Uint32 lastFrame; |
|---|
| 16 | Uint32 currFrame; |
|---|
| 17 | Uint32 dt; |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | Vector dir; |
|---|
| 21 | Vector up; |
|---|
| 22 | |
|---|
| 23 | float matQ[4][4]; |
|---|
| 24 | |
|---|
| 25 | Vector M; |
|---|
| 26 | Vector p1; |
|---|
| 27 | Vector p2; |
|---|
| 28 | Vector rotAxis; |
|---|
| 29 | float rotAngle; |
|---|
| 30 | Quaternion rotQ; |
|---|
| 31 | Quaternion rotQlast; |
|---|
| 32 | |
|---|
| 33 | bool mouse1Down; |
|---|
| 34 | |
|---|
| 35 | WindowHandler wHandler; // Create an instance of the whandler basecode class |
|---|
| 36 | OBJModel* obj; |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | #endif /* _FRAMEWORK_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.