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 =========================================================================*/
25 #ifndef vtkPOutlineCornerFilter_h
26 #define vtkPOutlineCornerFilter_h
27 
28 #include "vtkFiltersParallelModule.h" // For export macro
29 #include "vtkPolyDataAlgorithm.h"
32 class vtkAppendPolyData;
34 
35 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineCornerFilter : public vtkPolyDataAlgorithm
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
40 
44  static vtkPOutlineCornerFilter *New();
45 
53  virtual void SetCornerFactor(double cornerFactor);
54  virtual double GetCornerFactorMinValue() { return 0.001;}
55  virtual double GetCornerFactorMaxValue() { return 0.5; }
56 
57  vtkGetMacro(CornerFactor, double);
58 
60 
63  virtual void SetController(vtkMultiProcessController*);
64  vtkGetObjectMacro(Controller, vtkMultiProcessController);
66 
67 protected:
69  ~vtkPOutlineCornerFilter() VTK_OVERRIDE;
70 
72  vtkOutlineCornerSource *OutlineCornerSource;
73  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
74  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
75 
76  double CornerFactor;
77 private:
78  vtkPOutlineCornerFilter(const vtkPOutlineCornerFilter&) VTK_DELETE_FUNCTION;
79  void operator=(const vtkPOutlineCornerFilter&) VTK_DELETE_FUNCTION;
80 
81  vtkPOutlineFilterInternals* Internals;
82 };
83 
84 #endif
create wireframe outline corners around bounding box
Store vtkAlgorithm input/output information.
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:33
create wireframe outline corners for arbitrary data set
appends one or more polygonal datasets together
virtual double GetCornerFactorMinValue()
create wireframe outline (or corners) for arbitrary data set
Store zero or more vtkInformation instances.
virtual double GetCornerFactorMaxValue()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Multiprocessing communication superclass.