Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/importer/grid.h @ 6458

Last change on this file since 6458 was 6458, checked in by bensch, 18 years ago

orxonox/trunk: wave now also rebuilds the Normals (do not know if this is really necesarry, but i sure hope so for all the work :)

File size: 900 bytes
Line 
1/*!
2 * @file grid.h
3 * @brief Definition of ...
4*/
5
6#ifndef _GRID_H
7#define _GRID_H
8
9#include "vertex_array_model.h"
10
11// FORWARD DECLARATION
12
13
14
15//! A class for ...
16class Grid : public VertexArrayModel
17{
18
19public:
20  Grid(float sizeX, float sizeY, unsigned int resolutionX, unsigned int resolutionY);
21  virtual ~Grid();
22
23  float sizeX() const { return this->_sizeX; };
24  float sizeY() const { return this->_sizeY; };
25  unsigned int rows() const { return this->_rows; };
26  unsigned int columns() const { return this->_columns; };
27
28  float& height(unsigned int row, unsigned int column) { return this->vertex(row*this->_columns + column).y;};
29
30
31  void rebuildNormals(float maxHeight);
32
33private:
34  float             _sizeX;
35  float             _sizeY;
36
37  float             _gridSpacingX;
38  float             _gridSpacingY;
39
40  unsigned int      _rows;
41  unsigned int      _columns;
42};
43
44#endif /* _GRID_H */
Note: See TracBrowser for help on using the repository browser.