Revision 59,
557 bytes
checked in by mattausch, 20 years ago
(diff) |
completely changed file structure plus software design
|
Line | |
---|
1 | #include "CullingManager.h" |
---|
2 | |
---|
3 | namespace GtpVisibility { |
---|
4 | |
---|
5 | //----------------------------------------------------------------------- |
---|
6 | CullingManager::CullingManager(HierarchyInterface *hierarchyInterface): |
---|
7 | mHierarchyInterface(hierarchyInterface), mVisibilityThreshold(0), mNumQueryCulledNodes(0), |
---|
8 | mNumFrustumCulledNodes(0) |
---|
9 | { |
---|
10 | } |
---|
11 | //----------------------------------------------------------------------- |
---|
12 | void CullingManager::SetHierarchyInterface(HierarchyInterface *hierarchyInterface) |
---|
13 | { |
---|
14 | mHierarchyInterface = hierarchyInterface; |
---|
15 | } |
---|
16 | } // namespace GtpVisibility |
---|
Note: See
TracBrowser
for help on using the repository browser.