UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
u2d_grid.hpp
1 /* u2d_grid.hpp */
2 /* $Id: u2d_grid.hpp,v 1.3 2008/05/29 12:13:02 sasha Exp $ */
3 #ifndef __u2d_grid_hpp
4 #define __u2d_grid_hpp
5 
6 #include "u2d_grid_cell.hpp"
7 
8 class U2dGrid
9 {
10 public:
11 
12  U2dGrid(U2dBox*);
13 
14  bool getReady() { return m_ready; };
15 
16  bool getCommonCells(U2dGridCellsArray *common_cells, U2dBox* surfBox, U2dGridCell* root);
17 
18 protected:
19 
20  bool m_ready;
21 
22  U2dGridCell* m_root;
23 
24  static unsigned m_maxCellID;
25 
26 };
27 
28 
29 
30 #endif
Definition: u2d_grid.hpp:8
Definition: u2d_box.hpp:8
Definition: u2d_grid_cell.hpp:39