VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPLineIntegralConvolution2D.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 =========================================================================*/ 00026 #ifndef vtkPLineIntegralConvolution2D_h 00027 #define vtkPLineIntegralConvolution2D_h 00028 00029 #include "vtkLineIntegralConvolution2D.h" 00030 #include "vtkRenderingParallelLICModule.h" // for export macro 00031 #include <string> // for string 00032 00033 class vtkPainterCommunicator; 00034 class vtkPPainterCommunicator; 00035 00036 class VTKRENDERINGPARALLELLIC_EXPORT vtkPLineIntegralConvolution2D : public vtkLineIntegralConvolution2D 00037 { 00038 public: 00039 static vtkPLineIntegralConvolution2D *New(); 00040 vtkTypeMacro(vtkPLineIntegralConvolution2D, vtkLineIntegralConvolution2D); 00041 virtual void PrintSelf(ostream &os, vtkIndent indent); 00042 00043 //BTX 00045 00049 virtual void SetCommunicator(vtkPainterCommunicator *); 00050 virtual vtkPainterCommunicator *GetCommunicator(); 00052 00054 00055 virtual void GetGlobalMinMax( 00056 vtkPainterCommunicator *comm, 00057 float &min, 00058 float &max); 00059 //ETX 00061 00066 virtual void WriteTimerLog(const char *fileName); 00067 00068 protected: 00069 vtkPLineIntegralConvolution2D(); 00070 virtual ~vtkPLineIntegralConvolution2D(); 00071 00073 00078 virtual void StartTimerEvent(const char *name); 00079 virtual void EndTimerEvent(const char *name); 00081 00082 private: 00083 std::string LogFileName; 00084 00085 private: 00086 vtkPLineIntegralConvolution2D(const vtkPLineIntegralConvolution2D &); // Not implemented. 00087 void operator=(const vtkPLineIntegralConvolution2D &); // Not implemented. 00088 }; 00089 00090 #endif