VTK
vtkPReflectionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPReflectionFilter.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 =========================================================================*/
23 #ifndef vtkPReflectionFilter_h
24 #define vtkPReflectionFilter_h
25 
26 #include "vtkFiltersParallelModule.h" // For export macro
27 #include "vtkReflectionFilter.h"
28 
30 
31 class VTKFILTERSPARALLEL_EXPORT vtkPReflectionFilter : public vtkReflectionFilter
32 {
33 public:
34  static vtkPReflectionFilter* New();
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
39 
42  void SetController(vtkMultiProcessController*);
43  vtkGetObjectMacro (Controller, vtkMultiProcessController);
45 
46 protected:
48  ~vtkPReflectionFilter() override;
49 
53  int ComputeBounds(vtkDataObject* input, double bounds[6]) override;
54 
56 private:
58  void operator=(const vtkPReflectionFilter&) = delete;
59 
60 };
61 
62 #endif
63 
64 
reflects a data set across a plane
parallel version of vtkReflectionFilter
static vtkReflectionFilter * New()
a simple class to control print indentation
Definition: vtkIndent.h:39
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:64
Multiprocessing communication superclass.