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 "vtkPainter.h"
24 
26 class vtkPlaneCollection;
27 
29 {
30 public:
31  static vtkClipPlanesPainter* New();
33  void PrintSelf(ostream& os, vtkIndent indent);
34 
36  static vtkInformationObjectBaseKey* CLIPPING_PLANES();
37 
38 protected:
41 
44  virtual void ProcessInformation(vtkInformation*);
45 
46  void SetClippingPlanes(vtkPlaneCollection*);
48 private:
49  vtkClipPlanesPainter(const vtkClipPlanesPainter&); // Not implemented.
50  void operator=(const vtkClipPlanesPainter&); // Not implemented.
51 
52 };
53 
54 #endif