Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Rendering/vtkCuller.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkCuller.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00031 #ifndef __vtkCuller_h
00032 #define __vtkCuller_h
00033 
00034 #include "vtkObject.h"
00035 
00036 class vtkProp;
00037 class vtkRenderer;
00038 
00039 class VTK_RENDERING_EXPORT vtkCuller : public vtkObject
00040 {
00041 public:
00042   vtkTypeRevisionMacro(vtkCuller,vtkObject);
00043   virtual void PrintSelf(ostream& os, vtkIndent indent);
00044 
00046 
00047   virtual float Cull( vtkRenderer *ren, vtkProp **propList,
00048                       int& listLength, int& initialized )=0;
00050 
00051 protected:
00052   vtkCuller();
00053   ~vtkCuller();
00054 private:
00055   vtkCuller(const vtkCuller&);  // Not implemented.
00056   void operator=(const vtkCuller&);    // Not implemented.
00057 };
00058                                          
00059 #endif