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