NAME
vtkStructuredGrid - topologically regular array of data
SYNOPSIS
#include "/opt/vtk-c++/common/vtkStructuredGrid.h"
class VTK_EXPORT vtkStructuredGrid : public vtkPointSet
DESCRIPTION
vtkStructuredGrid is a data object that is a concrete implementation of vtkDataSet. vtkStructuredGrid represents a
geometric structure that is a topologically regular array of points. The topology is that of a cube that has been subdivided into a regular array of smaller cubes. Each point/cell can be addressed with i-j-k indices. Examples include finite difference grids.
SUMMARY
int *GetDimensions()
void GetDimensions(int data[3])
Get dimensions of this structured points dataset.
int IsPointVisible(int ptId)
Return non-zero value if specified point is visible.
void CopyStructure(vtkDataSet *ds)
Copy the geometric and topological structure of an input structured grid.
void BlankingOn()
Turn on data blanking. Data blanking is the ability to turn off portions of the grid when displaying or operating on it. Some data (like finite difference data) routinely turns off data to simulate solid obstacles.
void BlankingOff()
Turn off data blanking.
void BlankPoint(int ptId)
Turn off a particular data point.
void UnBlankPoint(int ptId)
Turn on a particular data point.
void SetDimensions(int i, int j, int k)
Set dimensions of structured grid dataset.
void SetDimensions(int dim[3])
Set dimensions of structured grid dataset.