VTK
vtkPOutlineCornerFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPOutlineCornerFilter.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 __vtkPOutlineCornerFilter_h
25 #define __vtkPOutlineCornerFilter_h
26 
27 #include "vtkFiltersParallelModule.h" // For export macro
28 #include "vtkPolyDataAlgorithm.h"
31 
32 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineCornerFilter : public vtkPolyDataAlgorithm
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
39  static vtkPOutlineCornerFilter *New();
40 
42 
44  vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
45  vtkGetMacro(CornerFactor, double);
47 
49 
50  virtual void SetController(vtkMultiProcessController*);
51  vtkGetObjectMacro(Controller, vtkMultiProcessController);
53 
54 protected:
57 
63 
64  double CornerFactor;
65 private:
66  vtkPOutlineCornerFilter(const vtkPOutlineCornerFilter&); // Not implemented.
67  void operator=(const vtkPOutlineCornerFilter&); // Not implemented.
68 };
69 
70 #endif