Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/tags/0.1-pre-alpha-3/core/environment.h @ 9249

Last change on this file since 9249 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"
9typedef struct dVektor{
10GLdouble x;
11GLdouble y;
12GLdouble z;
13
14
15}dVector;
16
17class 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.