VTK
vtkImageEuclideanToPolar.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageEuclideanToPolar.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 =========================================================================*/
25 #ifndef __vtkImageEuclideanToPolar_h
26 #define __vtkImageEuclideanToPolar_h
27 
28 
30 
32 {
33 public:
34  static vtkImageEuclideanToPolar *New();
35  vtkTypeMacro(vtkImageEuclideanToPolar,
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
40 
43  vtkSetMacro(ThetaMaximum,double);
44  vtkGetMacro(ThetaMaximum,double);
46 
47 protected:
50 
51  double ThetaMaximum;
52 
53  void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
54  int ext[6], int id);
55 private:
56  vtkImageEuclideanToPolar(const vtkImageEuclideanToPolar&); // Not implemented.
57  void operator=(const vtkImageEuclideanToPolar&); // Not implemented.
58 };
59 
60 #endif
61 
62 
63