Rendering/vtkCuller.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00045 #ifndef __vtkCuller_h
00046 #define __vtkCuller_h
00047
00048 #include "vtkObject.h"
00049
00050 class vtkProp;
00051 class vtkRenderer;
00052
00053 class VTK_RENDERING_EXPORT vtkCuller : public vtkObject
00054 {
00055 public:
00056 vtkTypeRevisionMacro(vtkCuller,vtkObject);
00057 virtual void PrintSelf(ostream& os, vtkIndent indent);
00058
00060
00061 virtual float Cull( vtkRenderer *ren, vtkProp **propList,
00062 int& listLength, int& initialized )=0;
00064
00065 protected:
00066 vtkCuller();
00067 ~vtkCuller();
00068 private:
00069 vtkCuller(const vtkCuller&);
00070 void operator=(const vtkCuller&);
00071 };
00072
00073 #endif