VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkSurfaceLICDefaultPainter.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00032 #ifndef __vtkSurfaceLICDefaultPainter_h 00033 #define __vtkSurfaceLICDefaultPainter_h 00034 00035 #include "vtkRenderingLICModule.h" // For export macro 00036 #include "vtkDefaultPainter.h" 00037 00038 class vtkSurfaceLICPainter; 00039 00040 class VTKRENDERINGLIC_EXPORT vtkSurfaceLICDefaultPainter 00041 : public vtkDefaultPainter 00042 { 00043 public: 00044 static vtkSurfaceLICDefaultPainter* New(); 00045 vtkTypeMacro(vtkSurfaceLICDefaultPainter, vtkDefaultPainter); 00046 void PrintSelf(ostream& os, vtkIndent indent); 00047 00049 00050 void SetSurfaceLICPainter(vtkSurfaceLICPainter*); 00051 vtkGetObjectMacro(SurfaceLICPainter, vtkSurfaceLICPainter); 00053 00054 //BTX 00055 protected: 00056 vtkSurfaceLICDefaultPainter(); 00057 ~vtkSurfaceLICDefaultPainter(); 00058 00060 virtual void BuildPainterChain(); 00061 00063 virtual void ReportReferences(vtkGarbageCollector *collector); 00064 00066 virtual void UpdateBounds(double bounds[6]); 00067 00068 protected: 00069 vtkSurfaceLICPainter* SurfaceLICPainter; 00070 00071 private: 00072 vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&); // Not implemented. 00073 void operator=(const vtkSurfaceLICDefaultPainter&); // Not implemented. 00074 //ETX 00075 }; 00076 00077 #endif