VTK
vtkOpenGLClipPlanesPainter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOpenGLClipPlanesPainter.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=========================================================================*/
24#ifndef vtkOpenGLClipPlanesPainter_h
25#define vtkOpenGLClipPlanesPainter_h
26
27#include "vtkRenderingOpenGLModule.h" // For export macro
29
31
32class VTKRENDERINGOPENGL_EXPORT vtkOpenGLClipPlanesPainter : public vtkClipPlanesPainter
33{
34public:
37 void PrintSelf(ostream& os, vtkIndent indent);
38
39protected:
42
48 virtual void RenderInternal(vtkRenderer* renderer, vtkActor* actor,
49 unsigned long typeflags, bool forceCompileOnly);
50
51private:
53 void operator=(const vtkOpenGLClipPlanesPainter&) VTK_DELETE_FUNCTION;
54};
55
56#endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:52
abstract class defining interface for painter that manages clipping.
a simple class to control print indentation
Definition: vtkIndent.h:40
painter that manages clipping
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
static vtkOpenGLClipPlanesPainter * New()
virtual void RenderInternal(vtkRenderer *renderer, vtkActor *actor, unsigned long typeflags, bool forceCompileOnly)
Generates rendering primitives of appropriate type(s).
maintain a list of planes
abstract specification for renderers
Definition: vtkRenderer.h:64