VTK  9.2.6
vtkReflectionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkReflectionFilter.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 =========================================================================*/
47 #ifndef vtkReflectionFilter_h
48 #define vtkReflectionFilter_h
49 
50 #include "vtkDataObjectAlgorithm.h"
51 #include "vtkFiltersGeneralModule.h" // For export macro
52 
54 class vtkDataSet;
55 
56 class VTKFILTERSGENERAL_EXPORT vtkReflectionFilter : public vtkDataObjectAlgorithm
57 {
58 public:
60 
62  void PrintSelf(ostream& os, vtkIndent indent) override;
63 
65  {
66  USE_X_MIN = 0,
67  USE_Y_MIN = 1,
68  USE_Z_MIN = 2,
69  USE_X_MAX = 3,
70  USE_Y_MAX = 4,
71  USE_Z_MAX = 5,
72  USE_X = 6,
73  USE_Y = 7,
74  USE_Z = 8
75  };
76 
78 
81  vtkSetClampMacro(Plane, int, 0, 8);
82  vtkGetMacro(Plane, int);
83  void SetPlaneToX() { this->SetPlane(USE_X); }
84  void SetPlaneToY() { this->SetPlane(USE_Y); }
85  void SetPlaneToZ() { this->SetPlane(USE_Z); }
86  void SetPlaneToXMin() { this->SetPlane(USE_X_MIN); }
87  void SetPlaneToYMin() { this->SetPlane(USE_Y_MIN); }
88  void SetPlaneToZMin() { this->SetPlane(USE_Z_MIN); }
89  void SetPlaneToXMax() { this->SetPlane(USE_X_MAX); }
90  void SetPlaneToYMax() { this->SetPlane(USE_Y_MAX); }
91  void SetPlaneToZMax() { this->SetPlane(USE_Z_MAX); }
93 
95 
99  vtkSetMacro(Center, double);
100  vtkGetMacro(Center, double);
102 
104 
108  vtkSetMacro(CopyInput, vtkTypeBool);
109  vtkGetMacro(CopyInput, vtkTypeBool);
110  vtkBooleanMacro(CopyInput, vtkTypeBool);
112 
114 
121  vtkSetMacro(FlipAllInputArrays, bool);
122  vtkGetMacro(FlipAllInputArrays, bool);
123  vtkBooleanMacro(FlipAllInputArrays, bool);
125 
126 protected:
129 
136 
140  virtual int RequestDataInternal(vtkDataSet* input, vtkUnstructuredGrid* output, double bounds[6]);
141 
145  virtual int ComputeBounds(vtkDataObject* input, double bounds[6]);
146 
151  vtkDataSet* input, vtkUnstructuredGrid* output, vtkIdType cellId, vtkIdType numInputPoints);
152 
155 
156  void FlipTuple(double* tuple, int* mirrorDir, int nComp);
157 
158  int Plane;
159  double Center;
162 
163 private:
164  vtkReflectionFilter(const vtkReflectionFilter&) = delete;
165  void operator=(const vtkReflectionFilter&) = delete;
166 };
167 
168 #endif
Superclass for algorithms that produce only data object as output.
general representation of visualization data
abstract class to specify dataset behavior
Definition: vtkDataSet.h:172
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
reflects a data set across a plane
static vtkReflectionFilter * New()
virtual vtkIdType ReflectNon3DCell(vtkDataSet *input, vtkUnstructuredGrid *output, vtkIdType cellId, vtkIdType numInputPoints)
Generate new, non-3D cell and return the generated cells id.
void SetPlaneToY()
Set the normal of the plane to use as mirror.
void SetPlaneToZMin()
Set the normal of the plane to use as mirror.
virtual int RequestDataInternal(vtkDataSet *input, vtkUnstructuredGrid *output, double bounds[6])
Actual implementation for reflection.
void SetPlaneToX()
Set the normal of the plane to use as mirror.
void SetPlaneToYMin()
Set the normal of the plane to use as mirror.
void FlipTuple(double *tuple, int *mirrorDir, int nComp)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetPlaneToXMax()
Set the normal of the plane to use as mirror.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
void SetPlaneToZMax()
Set the normal of the plane to use as mirror.
void SetPlaneToYMax()
Set the normal of the plane to use as mirror.
virtual int ComputeBounds(vtkDataObject *input, double bounds[6])
Internal method to compute bounds.
void SetPlaneToZ()
Set the normal of the plane to use as mirror.
int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void SetPlaneToXMin()
Set the normal of the plane to use as mirror.
~vtkReflectionFilter() override
dataset represents arbitrary combinations of all possible cell types
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332