source: trunk/VUT/GtpVisibility/src/CullingManager.cpp @ 59

Revision 59, 557 bytes checked in by mattausch, 19 years ago (diff)

completely changed file structure plus software design

Line 
1#include "CullingManager.h"
2
3namespace GtpVisibility {
4
5//-----------------------------------------------------------------------
6CullingManager::CullingManager(HierarchyInterface *hierarchyInterface):
7mHierarchyInterface(hierarchyInterface), mVisibilityThreshold(0), mNumQueryCulledNodes(0),
8mNumFrustumCulledNodes(0)
9{
10}
11//-----------------------------------------------------------------------
12void CullingManager::SetHierarchyInterface(HierarchyInterface *hierarchyInterface)
13{
14        mHierarchyInterface = hierarchyInterface;
15}
16} // namespace GtpVisibility
Note: See TracBrowser for help on using the repository browser.