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

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