source: GTP/trunk/Lib/Vis/OnlineCullingCHC/src/QueryManager.cpp @ 174

Revision 174, 399 bytes checked in by mattausch, 19 years ago (diff)
Line 
1#include "QueryManager.h"
2
3
4namespace GtpVisibility {
5 
6QueryManager::QueryManager(HierarchyInterface *hierarchyInterface, int queryModes):
7mHierarchyInterface(hierarchyInterface),
8mQueryModes(queryModes)
9{
10}
11 
12bool QueryManager::ShootRay(const Ray &ray, std::vector<Mesh *> *visibleMeshes, bool isGlobalLine)
13{
14    // run OGRE ray shooting query
15    return false;
16}
17 
18} // namespace GtpVisibility
Note: See TracBrowser for help on using the repository browser.