VTK  9.3.1
vtkPOutlineCornerFilter.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
13 #ifndef vtkPOutlineCornerFilter_h
14 #define vtkPOutlineCornerFilter_h
15 
16 #include "vtkFiltersParallelModule.h" // For export macro
17 #include "vtkPolyDataAlgorithm.h"
18 VTK_ABI_NAMESPACE_BEGIN
21 class vtkAppendPolyData;
23 
24 class VTKFILTERSPARALLEL_EXPORT vtkPOutlineCornerFilter : public vtkPolyDataAlgorithm
25 {
26 public:
28  void PrintSelf(ostream& os, vtkIndent indent) override;
29 
33  static vtkPOutlineCornerFilter* New();
34 
42  virtual void SetCornerFactor(double cornerFactor);
43  virtual double GetCornerFactorMinValue() { return 0.001; }
44  virtual double GetCornerFactorMaxValue() { return 0.5; }
45 
46  vtkGetMacro(CornerFactor, double);
47 
49 
52  virtual void SetController(vtkMultiProcessController*);
53  vtkGetObjectMacro(Controller, vtkMultiProcessController);
55 
56 protected:
58  ~vtkPOutlineCornerFilter() override;
59 
64 
65  double CornerFactor;
66 
67 private:
69  void operator=(const vtkPOutlineCornerFilter&) = delete;
70 
71  vtkPOutlineFilterInternals* Internals;
72 };
73 
74 VTK_ABI_NAMESPACE_END
75 #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:28
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.