Loading [MathJax]/extensions/tex2jax.js
VTK  9.4.20250409
vtkPOutlineFilter.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
15#ifndef vtkPOutlineFilter_h
16#define vtkPOutlineFilter_h
17
18#include "vtkFiltersParallelModule.h" // For export macro
20VTK_ABI_NAMESPACE_BEGIN
23
24class VTKFILTERSPARALLEL_EXPORT vtkPOutlineFilter : public vtkPolyDataAlgorithm
25{
26public:
29 void PrintSelf(ostream& os, vtkIndent indent) override;
30
32
36 vtkGetObjectMacro(Controller, vtkMultiProcessController);
38
39protected:
42
46 int FillInputPortInformation(int port, vtkInformation* info) override;
47
48private:
49 vtkPOutlineFilter(const vtkPOutlineFilter&) = delete;
50 void operator=(const vtkPOutlineFilter&) = delete;
51};
52VTK_ABI_NAMESPACE_END
53#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Multiprocessing communication superclass.
create wireframe outline around bounding box
create wireframe outline for arbitrary data set
virtual void SetController(vtkMultiProcessController *)
Set and get the controller.
vtkOutlineSource * OutlineSource
vtkMultiProcessController * Controller
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPOutlineFilter * New()
~vtkPOutlineFilter() override
Superclass for algorithms that produce only polydata as output.