VTK  9.2.6
vtkImageGridSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkImageGridSource.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=========================================================================*/
38#ifndef vtkImageGridSource_h
39#define vtkImageGridSource_h
40
41#include "vtkImageAlgorithm.h"
42#include "vtkImagingSourcesModule.h" // For export macro
43
44class VTKIMAGINGSOURCES_EXPORT vtkImageGridSource : public vtkImageAlgorithm
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
52
56 vtkSetVector3Macro(GridSpacing, int);
57 vtkGetVector3Macro(GridSpacing, int);
59
61
64 vtkSetVector3Macro(GridOrigin, int);
65 vtkGetVector3Macro(GridOrigin, int);
67
69
72 vtkSetMacro(LineValue, double);
73 vtkGetMacro(LineValue, double);
75
77
80 vtkSetMacro(FillValue, double);
81 vtkGetMacro(FillValue, double);
83
85
89 vtkSetMacro(DataScalarType, int);
90 void SetDataScalarTypeToDouble() { this->SetDataScalarType(VTK_DOUBLE); }
91 void SetDataScalarTypeToInt() { this->SetDataScalarType(VTK_INT); }
92 void SetDataScalarTypeToShort() { this->SetDataScalarType(VTK_SHORT); }
93 void SetDataScalarTypeToUnsignedShort() { this->SetDataScalarType(VTK_UNSIGNED_SHORT); }
94 void SetDataScalarTypeToUnsignedChar() { this->SetDataScalarType(VTK_UNSIGNED_CHAR); }
95 vtkGetMacro(DataScalarType, int);
97 {
98 return vtkImageScalarTypeNameMacro(this->DataScalarType);
99 }
101
103
107 vtkSetVector6Macro(DataExtent, int);
108 vtkGetVector6Macro(DataExtent, int);
110
112
115 vtkSetVector3Macro(DataSpacing, double);
116 vtkGetVector3Macro(DataSpacing, double);
118
120
123 vtkSetVector3Macro(DataOrigin, double);
124 vtkGetVector3Macro(DataOrigin, double);
126
127protected:
129 ~vtkImageGridSource() override = default;
130
131 int GridSpacing[3];
132 int GridOrigin[3];
133
134 double LineValue;
135 double FillValue;
136
138
139 int DataExtent[6];
140 double DataSpacing[3];
141 double DataOrigin[3];
142
145
146private:
147 vtkImageGridSource(const vtkImageGridSource&) = delete;
148 void operator=(const vtkImageGridSource&) = delete;
149};
150
151#endif
general representation of visualization data
Generic algorithm superclass for image algs.
Create an image of a grid.
static vtkImageGridSource * New()
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to collect information from their inputs and set information f...
void SetDataScalarTypeToUnsignedChar()
Set/Get the data type of pixels in the imported data.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetDataScalarTypeToUnsignedShort()
Set/Get the data type of pixels in the imported data.
void SetDataScalarTypeToShort()
Set/Get the data type of pixels in the imported data.
void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
void SetDataScalarTypeToInt()
Set/Get the data type of pixels in the imported data.
~vtkImageGridSource() override=default
const char * GetDataScalarTypeAsString()
Set/Get the data type of pixels in the imported data.
void SetDataScalarTypeToDouble()
Set/Get the data type of pixels in the imported data.
a simple class to control print indentation
Definition vtkIndent.h:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
#define VTK_SHORT
Definition vtkType.h:48
#define VTK_DOUBLE
Definition vtkType.h:55
#define VTK_UNSIGNED_CHAR
Definition vtkType.h:47
#define VTK_UNSIGNED_SHORT
Definition vtkType.h:49
#define VTK_INT
Definition vtkType.h:50