VTK
vtkClipPlanesPainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkClipPlanesPainter.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 =========================================================================*/
20 #ifndef vtkClipPlanesPainter_h
21 #define vtkClipPlanesPainter_h
22 
23 #include "vtkRenderingOpenGLModule.h" // For export macro
24 #include "vtkPainter.h"
25 
27 class vtkPlaneCollection;
28 
29 class VTKRENDERINGOPENGL_EXPORT vtkClipPlanesPainter : public vtkPainter
30 {
31 public:
32  static vtkClipPlanesPainter* New();
34  void PrintSelf(ostream& os, vtkIndent indent);
35 
37  static vtkInformationObjectBaseKey* CLIPPING_PLANES();
38 
39 protected:
42 
45  virtual void ProcessInformation(vtkInformation*);
46 
47  void SetClippingPlanes(vtkPlaneCollection*);
49 private:
50  vtkClipPlanesPainter(const vtkClipPlanesPainter&); // Not implemented.
51  void operator=(const vtkClipPlanesPainter&); // Not implemented.
52 
53 };
54 
55 #endif
Store vtkAlgorithm input/output information.
virtual void ProcessInformation(vtkInformation *)
Definition: vtkPainter.h:202
maintain a list of planes
abstract class defining interface for painter that manages clipping.
vtkPlaneCollection * ClippingPlanes
a simple class to control print indentation
Definition: vtkIndent.h:38
Key for vtkObjectBase values.
Abstract class for drawing poly data.
Definition: vtkPainter.h:63
static vtkObject * New()
virtual void PrintSelf(ostream &os, vtkIndent indent)