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 "vtkRenderingCoreModule.h" // For export macro
34 #include "vtkObject.h"
35 
36 class vtkProp;
37 class vtkRenderer;
38 
40 {
41 public:
42  vtkTypeMacro(vtkCuller, vtkObject);
43  virtual void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
47  virtual double Cull( vtkRenderer *ren, vtkProp **propList,
48  int& listLength, int& initialized ) = 0;
50 
51 protected:
52  vtkCuller();
53  ~vtkCuller();
54 
55 private:
56  vtkCuller(const vtkCuller&); // Not implemented.
57  void operator=(const vtkCuller&); // Not implemented.
58 };
59 
60 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:52
abstract base class for most VTK objects
Definition: vtkObject.h:61
abstract specification for renderers
Definition: vtkRenderer.h:63
virtual void PrintSelf(ostream &os, vtkIndent indent)
a superclass for prop cullers
Definition: vtkCuller.h:39
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKRENDERINGCORE_EXPORT