VTK  9.0.1
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) 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() override;
70 
75 
76  double CornerFactor;
77 
78 private:
80  void operator=(const vtkPOutlineCornerFilter&) = delete;
81 
82  vtkPOutlineFilterInternals* Internals;
83 };
84 
85 #endif
create wireframe outline corners around bounding box
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkMultiProcessController * Controller
vtkOutlineCornerSource * OutlineCornerSource
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
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
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.