source: trunk/VUT/GtpVisibilityPreprocessor/src/Containers.h @ 176

Revision 176, 712 bytes checked in by bittner, 19 years ago (diff)

cosine sampling bug fixed

Line 
1#ifndef _Container_H__
2#define _Container_H__
3
4#include <vector>
5using namespace std;
6
7class ViewCell;
8class HierarchyNode;
9class SceneGraphNode;
10class Intersectable;
11
12/** Container for Mesh pointers primarily for the use within the kDTree and
13    BSP hierarchies */
14typedef vector<Intersectable *> ObjectContainer;
15
16/** Container for ViewCell pointers primarily for the use within the kDTree and
17    BSP hierarchies */
18
19typedef vector<ViewCell *> ViewCellContainer;
20/** Container for HierarchyNodes pointers primarily for the use within the kDTree and
21    BSP hierarchies */
22
23typedef vector<HierarchyNode *> NodeContainer;
24
25typedef vector<SceneGraphNode *> SceneGraphNodeContainer;
26
27
28
29#endif // _Container_H__
30
Note: See TracBrowser for help on using the repository browser.