#include "DummyPreprocessingManager.h" namespace GtpVisibility { DummyPreprocessingManager::DummyPreprocessingManager(HierarchyInterface *hierarchyInterface) :PreprocessingManager(hierarchyInterface) { } bool DummyPreprocessingManager::ExportScene(const string filename) { ofstream s(filename.c_str()); s<<"#VRML 2.0 utf8"< *viewCellIds) { return false; } /** Uses the specified viewcell to find its PVS */ int DummyPreprocessingManager::AddViewCellPVS(const int cellID, NodeInfoContainer *visibleNodes, MeshInfoContainer *visibleMeshes ) { // return the root of the hierarchyInterface regardless of the cellId // visibleNodes->push_back(traverser->GetRoot()); return false; } }