VTK  9.7.20260710
vtkCartesianGrid.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
16
17#ifndef vtkCartesianGrid_h
18#define vtkCartesianGrid_h
19
20#include "vtkCommonDataModelModule.h" // For export macro
21#include "vtkDataSet.h"
22#include "vtkStructuredData.h" // For inline methods
23
24VTK_ABI_NAMESPACE_BEGIN
26class VTKCOMMONDATAMODEL_EXPORT VTK_MARSHALAUTO vtkCartesianGrid : public vtkDataSet
27{
28public:
30
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35 void ShallowCopy(vtkDataObject* src) override;
36 void DeepCopy(vtkDataObject* src) override;
37 void CopyStructure(vtkDataSet* ds) override;
39
43 int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_CARTESIAN_GRID; }
44
45 using Superclass::FindCell;
46 using Superclass::GetCell;
47 using Superclass::GetPoint;
48
50
53 vtkPoints* GetPoints() override;
54 void GetPoint(vtkIdType id, double x[3]) override;
55 double* GetPoint(vtkIdType ptId) VTK_SIZEHINT(3) override;
56 vtkIdType GetNumberOfCells() override;
58 int GetMaxSpatialDimension() override;
59 int GetMinSpatialDimension() override;
60 int GetCellType(vtkIdType cellId) override;
62 void GetCellPoints(vtkIdType cellId, vtkIdType& npts, vtkIdType const*& pts, vtkIdList* ptIds)
63 VTK_SIZEHINT(pts, npts) override;
64 void GetCellPoints(vtkIdType cellId, vtkIdList* ptIds) override;
65 vtkIdType FindCell(double x[3], vtkCell* cell, vtkIdType cellId, double tol2, int& subId,
66 double pcoords[3], double* weights) override;
67 void GetPointCells(vtkIdType ptId, vtkIdList* cellIds) override
68 {
69 vtkStructuredData::GetPointCells(ptId, cellIds, this->GetDimensions());
70 }
71 int GetMaxCellSize() override { return 8; } // voxel is the largest
72 void GetCellNeighbors(vtkIdType cellId, vtkIdList* ptIds, vtkIdList* cellIds) override;
73 vtkCell* GetCell(vtkIdType cellId) override;
74 vtkCell* GetCell(int i, int j, int k) override;
75 bool HasAnyBlankPoints() override;
76 bool HasAnyBlankCells() override;
77 void Initialize() override;
79
86 virtual int ComputeStructuredCoordinates(const double x[3], int ijk[3], double pcoords[3]) = 0;
87
91 virtual vtkIdType ComputePointId(int ijk[3]) = 0;
92
96 virtual vtkIdType ComputeCellId(int ijk[3]) = 0;
97
105 void GetCellNeighbors(vtkIdType cellId, vtkIdList* ptIds, vtkIdList* cellIds, int* seedLoc);
106
110 int GetDataDimension();
111
118
126
133 void GetCellDims(int cellDims[3]);
134
136
142 virtual void BlankPoint(vtkIdType ptId);
143 virtual void UnBlankPoint(vtkIdType ptId);
144 virtual void BlankPoint(int i, int j, int k);
145 virtual void UnBlankPoint(int i, int j, int k);
147
149
155 virtual void BlankCell(vtkIdType ptId);
156 virtual void UnBlankCell(vtkIdType ptId);
157 virtual void BlankCell(int i, int j, int k);
158 virtual void UnBlankCell(int i, int j, int k);
160
166 unsigned char IsPointVisible(vtkIdType ptId);
167
173 unsigned char IsCellVisible(vtkIdType cellId);
174
178 vtkGetMacro(DataDescription, int);
179
181
185 void SetDimensions(int i, int j, int k) { this->SetExtent(0, i - 1, 0, j - 1, 0, k - 1); };
186 void SetDimensions(const int dim[3])
187 {
188 this->SetExtent(0, dim[0] - 1, 0, dim[1] - 1, 0, dim[2] - 1);
189 };
190
191
199
206 void GetDimensions(int dims[3]);
207#if VTK_ID_TYPE_IMPL != VTK_INT
208 void GetDimensions(vtkIdType dims[3]);
209#endif
210
214 int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; }
215
217
228 void SetExtent(VTK_FUTURE_CONST int extent[6]);
229 void SetExtent(int xMin, int xMax, int yMin, int yMax, int zMin, int zMax);
230 vtkGetVector6Macro(Extent, int);
232
234
238 static void SetScalarType(int, vtkInformation* meta_data);
239 static int GetScalarType(vtkInformation* meta_data);
240 static bool HasScalarType(vtkInformation* meta_data);
242 const char* GetScalarTypeAsString() { return vtkImageScalarTypeNameMacro(this->GetScalarType()); }
244
246
251 static void SetNumberOfScalarComponents(int n, vtkInformation* meta_data);
256
258
262 vtkIdType GetTupleIndexForExtent(vtkDataArray* array, VTK_FUTURE_CONST int extent[6]);
263 vtkIdType GetTupleIndex(vtkDataArray* array, VTK_FUTURE_CONST int coordinates[3]);
264 vtkIdType GetTupleIndex(vtkDataArray* array, int x, int y, int z);
266
268
272 vtkIdType GetValueIndexForExtent(vtkDataArray* array, VTK_FUTURE_CONST int extent[6]);
273 vtkIdType GetValueIndex(vtkDataArray* array, VTK_FUTURE_CONST int coordinates[3]);
274 vtkIdType GetValueIndex(vtkDataArray* array, int x, int y, int z);
276
278
284
285protected:
287 ~vtkCartesianGrid() override = default;
288
293
297 virtual void BuildPoints() = 0;
298
299private:
300 // Build internals fields
301 void BuildImplicitStructures();
302 void BuildCells();
303 void BuildCellTypes();
304
305 // API members
306 int DataDescription = vtkStructuredData::VTK_STRUCTURED_EMPTY;
307 int Dimensions[3] = { 0, 0, 0 };
308 int Extent[6] = { 0, -1, 0, -1, 0, -1 };
309
310 // For the GetPoint method
311 double Point[3] = { 0, 0, 0 };
312
313 // Internals fields
314 vtkSmartPointer<vtkPoints> StructuredPoints;
315 vtkSmartPointer<vtkStructuredCellArray> StructuredCells;
316 vtkSmartPointer<vtkConstantArray<unsigned char>> StructuredCellTypes;
317};
318
319//----------------------------------------------------------------------------
321{
322 this->GetPoint(id, this->Point);
323 return this->Point;
324}
325
326//----------------------------------------------------------------------------
331
332//----------------------------------------------------------------------------
337
338//----------------------------------------------------------------------------
340{
341 return vtkStructuredData::GetDataDimension(this->DataDescription);
342}
343
344//----------------------------------------------------------------------------
346{
347 return vtkStructuredData::GetDataDimension(this->DataDescription);
348}
349
350//----------------------------------------------------------------------------
352{
353 return vtkStructuredData::GetDataDimension(this->DataDescription);
354}
355
356VTK_ABI_NAMESPACE_END
357#endif
vtkIdType GetTupleIndexForExtent(vtkDataArray *array, VTK_FUTURE_CONST int extent[6])
Given a data array and a coordinate, return the index of the tuple in the array corresponding to that...
virtual void UnBlankCell(int i, int j, int k)
Methods for supporting blanking of cells.
int GetDataObjectType() VTK_FUTURE_CONST override
Return what type of dataset this is.
static bool HasNumberOfScalarComponents(vtkInformation *meta_data)
Set/Get the number of scalar components for points.
void DeepCopy(vtkDataObject *src) override
Standard vtkObject API methods.
virtual void UnBlankPoint(int i, int j, int k)
Methods for supporting blanking of cells.
void CopyStructure(vtkDataSet *ds) override
Standard vtkObject API methods.
virtual void BlankPoint(vtkIdType ptId)
Methods for supporting blanking of cells.
~vtkCartesianGrid() override=default
int GetDataDimension()
Return the dimensionality of the data.
void SetDimensions(int i, int j, int k)
Set dimensions of rectilinear grid dataset.
bool HasAnyBlankCells() override
Standard vtkDataSet API methods.
vtkPoints * GetPoints() override
Standard vtkDataSet API methods.
static void SetNumberOfScalarComponents(int n, vtkInformation *meta_data)
Set/Get the number of scalar components for points.
static vtkCartesianGrid * GetData(vtkInformationVector *v, int i=0)
Retrieve an instance of this class from an information object.
static vtkCartesianGrid * GetData(vtkInformation *info)
Retrieve an instance of this class from an information object.
void GetCellNeighbors(vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds, int *seedLoc)
Get cell neighbors around cell located at seedloc, except cell of id cellId.
vtkIdType GetTupleIndex(vtkDataArray *array, int x, int y, int z)
Given a data array and a coordinate, return the index of the tuple in the array corresponding to that...
virtual void BlankPoint(int i, int j, int k)
Methods for supporting blanking of cells.
void GetCellDims(int cellDims[3])
Given the node dimensions of this grid instance, this method computes the node dimensions.
vtkIdType GetNumberOfCells() override
Standard vtkDataSet API methods.
void GetPoint(vtkIdType id, double x[3]) override
Standard vtkDataSet API methods.
void SetExtent(int xMin, int xMax, int yMin, int yMax, int zMin, int zMax)
Set/Get the extent.
int * GetDimensions()
Get dimensions of this structured points dataset.
virtual void BlankCell(vtkIdType ptId)
Methods for supporting blanking of cells.
virtual int ComputeStructuredCoordinates(const double x[3], int ijk[3], double pcoords[3])=0
Computes the structured coordinates for a point x[3].
void Initialize() override
Standard vtkDataSet API methods.
static void SetScalarType(int, vtkInformation *meta_data)
Set/Get the scalar data type for the points.
void SetExtent(VTK_FUTURE_CONST int extent[6])
Set/Get the extent.
int GetScalarType()
Set/Get the scalar data type for the points.
virtual void UnBlankCell(vtkIdType ptId)
Methods for supporting blanking of cells.
unsigned char IsPointVisible(vtkIdType ptId)
Return non-zero value if specified point is visible.
virtual void UnBlankPoint(vtkIdType ptId)
Methods for supporting blanking of cells.
vtkIdType GetValueIndex(vtkDataArray *array, int x, int y, int z)
Given a data array and a coordinate, return the index of the value in the array corresponding to that...
void GetCellPoints(vtkIdType cellId, vtkIdList *ptIds) override
Standard vtkDataSet API methods.
vtkStructuredCellArray * GetCells()
Return the image data connectivity array.
static bool HasScalarType(vtkInformation *meta_data)
Set/Get the scalar data type for the points.
void SetDimensions(const int dim[3])
Set dimensions of rectilinear grid dataset.
void GetCellPoints(vtkIdType cellId, vtkIdType &npts, vtkIdType const *&pts, vtkIdList *ptIds) override
Standard vtkDataSet API methods.
virtual void BlankCell(int i, int j, int k)
Methods for supporting blanking of cells.
vtkIdType GetNumberOfPoints() override
Standard vtkDataSet API methods.
virtual void BuildPoints()=0
Pure abstract method responsible to build and set internal points.
int GetMaxSpatialDimension() override
Standard vtkDataSet API methods.
int GetMaxCellSize() override
Standard vtkDataSet API methods.
unsigned char IsCellVisible(vtkIdType cellId)
Return non-zero value if specified point is visible.
vtkIdType GetCellSize(vtkIdType cellId) override
Standard vtkDataSet API methods.
bool HasAnyBlankPoints() override
Standard vtkDataSet API methods.
virtual vtkIdType ComputeCellId(int ijk[3])=0
Given a location in structured coordinates (i-j-k), return the cell id.
void GetPointCells(vtkIdType ptId, vtkIdList *cellIds) override
Standard vtkDataSet API methods.
int GetMinSpatialDimension() override
Standard vtkDataSet API methods.
vtkConstantArray< unsigned char > * GetCellTypes()
Get the array of all cell types in the image data.
void GetCellNeighbors(vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds) override
Standard vtkDataSet API methods.
vtkIdType GetValueIndexForExtent(vtkDataArray *array, VTK_FUTURE_CONST int extent[6])
Given a data array and a coordinate, return the index of the value in the array corresponding to that...
int GetCellType(vtkIdType cellId) override
Standard vtkDataSet API methods.
vtkIdType FindCell(double x[3], vtkCell *cell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) override
Standard vtkDataSet API methods.
static int GetNumberOfScalarComponents(vtkInformation *meta_data)
Set/Get the number of scalar components for points.
const char * GetScalarTypeAsString()
Set/Get the scalar data type for the points.
virtual vtkIdType ComputePointId(int ijk[3])=0
Given a location in structured coordinates (i-j-k), return the point id.
vtkIdType GetValueIndex(vtkDataArray *array, VTK_FUTURE_CONST int coordinates[3])
Given a data array and a coordinate, return the index of the value in the array corresponding to that...
void SetStructuredPoints(vtkPoints *)
Set the internally built structured points.
vtkCell * GetCell(int i, int j, int k) override
Standard vtkDataSet API methods.
int GetNumberOfScalarComponents()
Set/Get the number of scalar components for points.
static int GetScalarType(vtkInformation *meta_data)
Set/Get the scalar data type for the points.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard vtkObject API methods.
vtkCell * GetCell(vtkIdType cellId) override
Standard vtkDataSet API methods.
int GetExtentType() VTK_FUTURE_CONST override
Structured extent.
void ShallowCopy(vtkDataObject *src) override
Standard vtkObject API methods.
vtkIdType GetTupleIndex(vtkDataArray *array, VTK_FUTURE_CONST int coordinates[3])
Given a data array and a coordinate, return the index of the tuple in the array corresponding to that...
abstract class to specify cell behavior
Definition vtkCell.h:130
A utility array for wrapping constant functions in implicit arrays.
virtual vtkIdType GetNumberOfPoints()=0
Determine the number of points composing the dataset.
virtual vtkIdType GetNumberOfCells()=0
Determine the number of cells composing the dataset.
virtual int GetMaxSpatialDimension()
Get the maximum/minimum spatial dimensionality of the data which is the maximum/minimum dimension of ...
virtual double * GetPoint(vtkIdType ptId)=0
Get point coordinates with ptId such that: 0 <= ptId < NumberOfPoints.
virtual int GetMinSpatialDimension()
Get the maximum/minimum spatial dimensionality of the data which is the maximum/minimum dimension of ...
list of point or cell ids
Definition vtkIdList.h:135
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition vtkPoints.h:140
implicit object to represent cell connectivity
static vtkIdType GetNumberOfCells(const int ext[6], int dataDescription=vtkStructuredData::VTK_STRUCTURED_EMPTY)
Given the grid extent, this method returns the total number of cells within the extent.
static int GetDataDimension(int dataDescription)
Return the topological dimension of the data (e.g., 0, 1, 2, or 3D).
static vtkIdType GetNumberOfPoints(const int ext[6], int dataDescription=vtkStructuredData::VTK_STRUCTURED_EMPTY)
Given the grid extent, this method returns the total number of points within the extent.
static void GetPointCells(vtkIdType ptId, vtkIdList *cellIds, VTK_FUTURE_CONST int dim[3])
Get the cells using a point.
#define vtkDataArray
#define VTK_3D_EXTENT
int vtkIdType
Definition vtkType.h:363
@ VTK_CARTESIAN_GRID
Definition vtkType.h:160
#define VTK_SIZEHINT(...)
#define VTK_MARSHALAUTO