VTK  9.2.5
vtkImageSinusoidSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageSinusoidSource.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 =========================================================================*/
75 #ifndef vtkImageSinusoidSource_h
76 #define vtkImageSinusoidSource_h
77 
78 #include "vtkImageAlgorithm.h"
79 #include "vtkImagingSourcesModule.h" // For export macro
80 
81 class VTKIMAGINGSOURCES_EXPORT vtkImageSinusoidSource : public vtkImageAlgorithm
82 {
83 public:
86  void PrintSelf(ostream& os, vtkIndent indent) override;
87 
91  void SetWholeExtent(int xMinx, int xMax, int yMin, int yMax, int zMin, int zMax);
92 
94 
98  void SetDirection(double, double, double);
99  void SetDirection(double dir[3]);
100  vtkGetVector3Macro(Direction, double);
102 
104 
107  vtkSetMacro(Period, double);
108  vtkGetMacro(Period, double);
110 
112 
115  vtkSetMacro(Phase, double);
116  vtkGetMacro(Phase, double);
118 
120 
123  vtkSetMacro(Amplitude, double);
124  vtkGetMacro(Amplitude, double);
126 
127 protected:
129  ~vtkImageSinusoidSource() override = default;
130 
131  int WholeExtent[6];
132  double Direction[3];
133  double Period;
134  double Phase;
135  double Amplitude;
136 
139 
140 private:
142  void operator=(const vtkImageSinusoidSource&) = delete;
143 };
144 
145 #endif
general representation of visualization data
Generic algorithm superclass for image algs.
Create an image with sinusoidal pixel values.
void SetWholeExtent(int xMinx, int xMax, int yMin, int yMax, int zMin, int zMax)
Set/Get the extent of the whole output image.
void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
static vtkImageSinusoidSource * New()
~vtkImageSinusoidSource() override=default
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void SetDirection(double dir[3])
Set/Get the direction vector which determines the sinusoidal orientation.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetDirection(double, double, double)
Set/Get the direction vector which determines the sinusoidal orientation.
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ dir
Definition: vtkX3D.h:330
@ data
Definition: vtkX3D.h:321