dox/Rendering/vtkCuller.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00027
#ifndef __vtkCuller_h
00028
#define __vtkCuller_h
00029
00030
#include "vtkObject.h"
00031
00032
class vtkProp;
00033
class vtkRenderer;
00034
00035 class VTK_RENDERING_EXPORT vtkCuller :
public vtkObject
00036 {
00037
public:
00038 vtkTypeRevisionMacro(vtkCuller,
vtkObject);
00039
virtual void PrintSelf(ostream& os,
vtkIndent indent);
00040
00042
00043
virtual double Cull(
vtkRenderer *ren,
vtkProp **propList,
00044
int& listLength,
int& initialized )=0;
00046
00047
protected:
00048 vtkCuller();
00049 ~vtkCuller();
00050
private:
00051 vtkCuller(
const vtkCuller&);
00052
void operator=(
const vtkCuller&);
00053 };
00054
00055
#endif