VTK  9.3.0
vtkImageRectilinearWipe.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
47#ifndef vtkImageRectilinearWipe_h
48#define vtkImageRectilinearWipe_h
49
50#include "vtkImagingHybridModule.h" // For export macro
52
53#define VTK_WIPE_QUAD 0
54#define VTK_WIPE_HORIZONTAL 1
55#define VTK_WIPE_VERTICAL 2
56#define VTK_WIPE_LOWER_LEFT 3
57#define VTK_WIPE_LOWER_RIGHT 4
58#define VTK_WIPE_UPPER_LEFT 5
59#define VTK_WIPE_UPPER_RIGHT 6
60
61VTK_ABI_NAMESPACE_BEGIN
62class VTKIMAGINGHYBRID_EXPORT vtkImageRectilinearWipe : public vtkThreadedImageAlgorithm
63{
64public:
67 void PrintSelf(ostream& os, vtkIndent indent) override;
68
70
74 vtkSetVector2Macro(Position, int);
75 vtkGetVectorMacro(Position, int, 2);
77
79
83 vtkSetVector2Macro(Axis, int);
84 vtkGetVectorMacro(Axis, int, 2);
86
90 virtual void SetInput1Data(vtkDataObject* in) { this->SetInputData(0, in); }
91 virtual void SetInput2Data(vtkDataObject* in) { this->SetInputData(1, in); }
92
94
112 vtkSetClampMacro(Wipe, int, VTK_WIPE_QUAD, VTK_WIPE_UPPER_RIGHT);
113 vtkGetMacro(Wipe, int);
114 void SetWipeToQuad() { this->SetWipe(VTK_WIPE_QUAD); }
115 void SetWipeToHorizontal() { this->SetWipe(VTK_WIPE_HORIZONTAL); }
116 void SetWipeToVertical() { this->SetWipe(VTK_WIPE_VERTICAL); }
117 void SetWipeToLowerLeft() { this->SetWipe(VTK_WIPE_LOWER_LEFT); }
118 void SetWipeToLowerRight() { this->SetWipe(VTK_WIPE_LOWER_RIGHT); }
119 void SetWipeToUpperLeft() { this->SetWipe(VTK_WIPE_UPPER_LEFT); }
120 void SetWipeToUpperRight() { this->SetWipe(VTK_WIPE_UPPER_RIGHT); }
122
123protected:
125 ~vtkImageRectilinearWipe() override = default;
126
128 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
129 int outExt[6], int threadId) override;
130
131 int Position[2];
132 int Wipe;
133 int Axis[2];
134
135private:
137 void operator=(const vtkImageRectilinearWipe&) = delete;
138};
139
140VTK_ABI_NAMESPACE_END
141#endif
general representation of visualization data
void SetInputData(vtkDataObject *)
Assign a data object as input.
topologically and geometrically regular array of data
make a rectilinear combination of two images.
~vtkImageRectilinearWipe() override=default
void SetWipeToVertical()
Specify the wipe mode.
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int threadId) override
If the subclass does not define an Execute method, then the task will be broken up,...
void SetWipeToUpperRight()
Specify the wipe mode.
void SetWipeToQuad()
Specify the wipe mode.
virtual void SetInput1Data(vtkDataObject *in)
Set the two inputs to this filter.
void SetWipeToLowerLeft()
Specify the wipe mode.
static vtkImageRectilinearWipe * New()
virtual void SetInput2Data(vtkDataObject *in)
void SetWipeToHorizontal()
Specify the wipe mode.
void SetWipeToLowerRight()
Specify the wipe mode.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetWipeToUpperLeft()
Specify the wipe mode.
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.
#define VTK_WIPE_VERTICAL
#define VTK_WIPE_HORIZONTAL
#define VTK_WIPE_UPPER_RIGHT
#define VTK_WIPE_LOWER_RIGHT
#define VTK_WIPE_QUAD
#define VTK_WIPE_LOWER_LEFT
#define VTK_WIPE_UPPER_LEFT