Last change
on this file since 2624 was
2242,
checked in by dave, 20 years ago
|
orxonox/branches/dave: habe wieder mal was gemacht:)
|
File size:
511 bytes
|
Line | |
---|
1 | |
---|
2 | #include <GL/glut.h> |
---|
3 | #include <stdlib.h> |
---|
4 | |
---|
5 | #ifndef ENVIRONEMENT_H |
---|
6 | #define ENVIRONEMENT_H |
---|
7 | |
---|
8 | #include "data_tank.h" |
---|
9 | typedef struct dVektor{ |
---|
10 | GLdouble x; |
---|
11 | GLdouble y; |
---|
12 | GLdouble z; |
---|
13 | |
---|
14 | |
---|
15 | }dVector; |
---|
16 | |
---|
17 | class Environment { |
---|
18 | |
---|
19 | private: |
---|
20 | float xCor; |
---|
21 | float yCor; |
---|
22 | float zCor; |
---|
23 | |
---|
24 | float mountainTest[10][10]; |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | public: |
---|
30 | Environment (); |
---|
31 | ~Environment (); |
---|
32 | |
---|
33 | void drawEnvironment(void); |
---|
34 | void setEnvPosition(void); |
---|
35 | void getEnvPosition(void); |
---|
36 | dVector CalcNormale(dVector *V1, dVector *V2, dVector *V3); |
---|
37 | |
---|
38 | }; |
---|
39 | |
---|
40 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.