VTK
vtkCuller.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCuller.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
30 #ifndef __vtkCuller_h
31 #define __vtkCuller_h
32 
33 #include "vtkObject.h"
34 
35 class vtkProp;
36 class vtkRenderer;
37 
39 {
40 public:
41  vtkTypeMacro(vtkCuller,vtkObject);
42  virtual void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
46  virtual double Cull( vtkRenderer *ren, vtkProp **propList,
47  int& listLength, int& initialized )=0;
49 
50 protected:
51  vtkCuller();
52  ~vtkCuller();
53 private:
54  vtkCuller(const vtkCuller&); // Not implemented.
55  void operator=(const vtkCuller&); // Not implemented.
56 };
57 
58 #endif