source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/FrustumCullingTraverser.h @ 2782

Revision 2782, 463 bytes checked in by mattausch, 16 years ago (diff)
Line 
1#ifndef __FRUSTUMCULLINGTRAVERSER_H
2#define __FRUSTUMCULLINGTRAVERSER_H
3
4#include "RenderTraverser.h"
5
6
7namespace CHCDemoEngine
8{
9
10/** Abstract class implementing a scene traversal for rendering.
11*/
12class FrustumCullingTraverser: public RenderTraverser
13{
14public:
15
16        FrustumCullingTraverser();
17
18protected:
19        /** Traverses and renders the scene with the specified method
20        */
21        virtual void Traverse();
22};
23
24}
25
26
27
28#endif // __FRUSTUMTRAVERSER_H
Note: See TracBrowser for help on using the repository browser.