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 class vtkAppendPolyData;
33 
35 {
36 public:
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
41  static vtkPOutlineCornerFilter *New();
42 
44 
49  virtual void SetCornerFactor(double cornerFactor);
50  virtual double GetCornerFactorMinValue() { return 0.001;}
51  virtual double GetCornerFactorMaxValue() { return 0.5; }
53 
54  vtkGetMacro(CornerFactor, double);
55 
57 
58  virtual void SetController(vtkMultiProcessController*);
61 
62 protected:
65 
70 
71  double CornerFactor;
72 private:
73  vtkPOutlineCornerFilter(const vtkPOutlineCornerFilter&); // Not implemented.
74  void operator=(const vtkPOutlineCornerFilter&); // Not implemented.
75 
76  vtkPOutlineFilterInternals* Internals;
77 };
78 
79 #endif
create wireframe outline corners around bounding box
virtual int FillInputPortInformation(int port, vtkInformation *info)
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkMultiProcessController * Controller
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:83
vtkOutlineCornerSource * OutlineCornerSource
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:632
#define VTKFILTERSPARALLEL_EXPORT
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
create wireframe outline corners for arbitrary data set
appends one or more polygonal datasets together
virtual double GetCornerFactorMinValue()
#define vtkGetObjectMacro(name, type)
Definition: vtkSetGet.h:222
create wireframe outline (or corners) for arbitrary data set
Store zero or more vtkInformation instances.
virtual double GetCornerFactorMaxValue()
Multiprocessing communication superclass.