17#ifndef vtkCartesianGrid_h
18#define vtkCartesianGrid_h
20#include "vtkCommonDataModelModule.h"
24VTK_ABI_NAMESPACE_BEGIN
40 using Superclass::FindCell;
41 using Superclass::GetCell;
42 using Superclass::GetPoint;
61 double tol2,
int& subId,
double pcoords[3],
double* weights)
override;
63 double pcoords[3],
double* weights)
override;
107 int GetDataDimension();
175 vtkGetMacro(DataDescription,
int);
182 void SetDimensions(
int i,
int j,
int k) { this->SetExtent(0, i - 1, 0, j - 1, 0, k - 1); };
185 this->SetExtent(0, dim[0] - 1, 0, dim[1] - 1, 0, dim[2] - 1);
203 void GetDimensions(
int dims[3]);
204#if VTK_ID_TYPE_IMPL != VTK_INT
226 void SetExtent(
int xMin,
int xMax,
int yMin,
int yMax,
int zMin,
int zMax);
227 vtkGetVector6Macro(Extent,
int);
270 void BuildImplicitStructures();
272 void BuildCellTypes();
276 int Dimensions[3] = { 0, 0, 0 };
277 int Extent[6] = { 0, -1, 0, -1, 0, -1 };
280 double Point[3] = { 0, 0, 0 };
Abstract API for vtkImageData and vtkRectilinearGrid.
virtual void UnBlankCell(int i, int j, int k)
Methods for supporting blanking of cells.
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.
void GetCellNeighbors(vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds, int *seedLoc)
Get cell neighbors around cell located at seedloc, except cell of id cellId.
vtkIdType FindCell(double x[3], vtkCell *cell, vtkGenericCell *gencell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) override
Standard vtkDataSet API methods.
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.
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.
vtkCell * FindAndGetCell(double x[3], vtkCell *cell, vtkIdType cellId, double tol2, int &subId, double pcoords[3], double *weights) override
Standard vtkDataSet API methods.
virtual void UnBlankPoint(vtkIdType ptId)
Methods for supporting blanking of cells.
void GetCellPoints(vtkIdType cellId, vtkIdList *ptIds) override
Standard vtkDataSet API methods.
vtkStructuredCellArray * GetCells()
Return the image data connectivity array.
void SetExtent(int extent[6])
Set/Get the extent.
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.
void GetCellNeighbors(vtkIdType cellId, vtkIdList *ptIds, vtkIdList *cellIds) override
Standard vtkDataSet API methods.
int GetCellType(vtkIdType cellId) 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.
void SetStructuredPoints(vtkPoints *)
Set the internally built structured points.
vtkCell * GetCell(int i, int j, int k) override
Standard vtkDataSet API methods.
vtkConstantArray< int > * GetCellTypesArray()
Get the array of all cell types in the image data.
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.
abstract class to specify cell behavior
general representation of visualization data
abstract class to specify dataset behavior
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 ...
provides thread-safe access to cells
list of point or cell ids
A read only array class that wraps an implicit function from integers to any value type supported by ...
a simple class to control print indentation
represent and manipulate 3D points
Hold a reference to a vtkObjectBase instance.
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 VTK_SIZEHINT(...)