VTK  9.3.1
vtkPReflectionFilter.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
11 #ifndef vtkPReflectionFilter_h
12 #define vtkPReflectionFilter_h
13 
14 #include "vtkFiltersParallelModule.h" // For export macro
15 #include "vtkReflectionFilter.h"
16 
17 VTK_ABI_NAMESPACE_BEGIN
19 
20 class VTKFILTERSPARALLEL_EXPORT vtkPReflectionFilter : public vtkReflectionFilter
21 {
22 public:
23  static vtkPReflectionFilter* New();
25  void PrintSelf(ostream& os, vtkIndent indent) override;
26 
28 
31  void SetController(vtkMultiProcessController*);
32  vtkGetObjectMacro(Controller, vtkMultiProcessController);
34 
35 protected:
37  ~vtkPReflectionFilter() override;
38 
42  int ComputeBounds(vtkDataObject* input, double bounds[6]) override;
43 
45 
46 private:
48  void operator=(const vtkPReflectionFilter&) = delete;
49 };
50 
51 VTK_ABI_NAMESPACE_END
52 #endif
reflects a data set across a plane
parallel version of vtkReflectionFilter
static vtkReflectionFilter * New()
a simple class to control print indentation
Definition: vtkIndent.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int ComputeBounds(vtkDataObject *input, double bounds[6])
Internal method to compute bounds.
vtkMultiProcessController * Controller
general representation of visualization data
Definition: vtkDataObject.h:54
Multiprocessing communication superclass.