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 =========================================================================*/
28 #ifndef vtkCuller_h
29 #define vtkCuller_h
30 
31 #include "vtkRenderingCoreModule.h" // For export macro
32 #include "vtkObject.h"
33 
34 class vtkProp;
35 class vtkRenderer;
36 
37 class VTKRENDERINGCORE_EXPORT vtkCuller : public vtkObject
38 {
39 public:
40  vtkTypeMacro(vtkCuller, vtkObject);
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
46  virtual double Cull( vtkRenderer *ren, vtkProp **propList,
47  int& listLength, int& initialized ) = 0;
48 
49 protected:
50  vtkCuller();
51  ~vtkCuller() override;
52 
53 private:
54  vtkCuller(const vtkCuller&) = delete;
55  void operator=(const vtkCuller&) = delete;
56 };
57 
58 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:44
abstract base class for most VTK objects
Definition: vtkObject.h:53
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
abstract specification for renderers
Definition: vtkRenderer.h:57
a superclass for prop cullers
Definition: vtkCuller.h:37
a simple class to control print indentation
Definition: vtkIndent.h:33