VTK
vtkSurfaceLICDefaultPainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSurfaceLICDefaultPainter.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 vtkSurfaceLICDefaultPainter_h
31 #define vtkSurfaceLICDefaultPainter_h
32 
33 #include "vtkRenderingLICModule.h" // For export macro
34 #include "vtkDefaultPainter.h"
35 
37 
38 class VTKRENDERINGLIC_EXPORT vtkSurfaceLICDefaultPainter
39  : public vtkDefaultPainter
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
45 
47 
50  void SetSurfaceLICPainter(vtkSurfaceLICPainter*);
51  vtkGetObjectMacro(SurfaceLICPainter, vtkSurfaceLICPainter);
53 
54 protected:
56  ~vtkSurfaceLICDefaultPainter() VTK_OVERRIDE;
57 
61  void BuildPainterChain() VTK_OVERRIDE;
62 
66  void ReportReferences(vtkGarbageCollector *collector) VTK_OVERRIDE;
67 
71  void UpdateBounds(double bounds[6]) VTK_OVERRIDE;
72 
73 protected:
74  vtkSurfaceLICPainter* SurfaceLICPainter;
75 
76 private:
77  vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&) VTK_DELETE_FUNCTION;
78  void operator=(const vtkSurfaceLICDefaultPainter&) VTK_DELETE_FUNCTION;
79 
80 };
81 
82 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkDefaultPainter * New()
vtkDefaultPainter replacement that inserts the vtkSurfaceLICPainter at the correct position in the pa...
Detect and break reference loops.
a simple class to control print indentation
Definition: vtkIndent.h:33
painter that performs LIC on the surface of arbitrary geometry.
sets up a default chain of painters.