source: GTP/trunk/Lib/Vis/Preprocessing/src/Renderer.cpp @ 863

Revision 863, 373 bytes checked in by mattausch, 18 years ago (diff)

working on preprocessor integration
added iv stuff

Line 
1#include "Renderer.h"
2
3namespace GtpVisibilityPreprocessor {
4
5
6Renderer::Renderer():
7mViewCellsManager(NULL)
8{
9}
10
11Renderer::Renderer(SceneGraph *sceneGraph, ViewCellsManager *vcm):
12mSceneGraph(sceneGraph), mViewCellsManager(vcm)
13{
14}
15
16Renderer::~Renderer()
17{}
18
19void Renderer::SetViewCellsManager(ViewCellsManager *vcm)
20{
21        mViewCellsManager = vcm;
22}
23
24}
Note: See TracBrowser for help on using the repository browser.