00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkCuller.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 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&); // Not implemented. 00052 void operator=(const vtkCuller&); // Not implemented. 00053 }; 00054 00055 #endif