139#ifndef vtkMappedUnstructuredGrid_h
140#define vtkMappedUnstructuredGrid_h
148template <
class Implementation,
202#include "vtkMappedUnstructuredGrid.txx"
208#define vtkMakeExportedMappedUnstructuredGrid(_className, _impl, _exportDecl) \
209 class _exportDecl _className : public vtkMappedUnstructuredGrid<_impl> \
212 vtkTypeMacro(_className, vtkMappedUnstructuredGrid<_impl>); \
213 static _className* New(); \
218 _impl* i = _impl::New(); \
219 this->SetImplementation(i); \
222 ~_className() override {} \
225 _className(const _className&); \
226 void operator=(const _className&); \
229#define vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, _exportDecl) \
230 class _exportDecl _className : public vtkMappedUnstructuredGrid<_impl, _cIter> \
233 typedef vtkMappedUnstructuredGrid<_impl, _cIter> SelfType; \
234 vtkTypeMacro(_className, SelfType); \
235 static _className* New(); \
240 _impl* i = _impl::New(); \
241 this->SetImplementation(i); \
244 ~_className() override {} \
247 _className(const _className&); \
248 void operator=(const _className&); \
253#define vtkMakeExportedMappedUnstructuredGrid(_className, _impl, _exportDecl) \
254 class _exportDecl _className : public vtkUnstructuredGridBase \
257 vtkTypeMacro(_className, vtkUnstructuredGridBase); \
258 static _className* New(); \
262 ~_className() override {} \
265 _className(const _className&); \
266 void operator=(const _className&); \
269#define vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, _exportDecl) \
270 class _exportDecl _className : public vtkUnstructuredGridBase \
273 vtkTypeMacro(_className, vtkUnstructuredGridBase); \
274 static _className* New(); \
278 ~_className() override {} \
281 _className(const _className&); \
282 void operator=(const _className&); \
287#define vtkMakeMappedUnstructuredGrid(_className, _impl) \
288 vtkMakeExportedMappedUnstructuredGrid(_className, _impl, )
290#define vtkMakeMappedUnstructuredGridWithIter(_className, _impl, _cIter) \
291 vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, )
Efficient cell iterator for vtkDataSet topologies.
abstract class to specify cell behavior
general representation of visualization data
abstract class to specify dataset behavior
virtual vtkCell * GetCell(vtkIdType cellId)=0
Get cell with cellId such that: 0 <= cellId < NumberOfCells.
provides thread-safe access to cells
list of point or cell ids
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Default cell iterator for vtkMappedUnstructuredGrid.
Allows datasets with arbitrary storage layouts to be used with VTK.
void ShallowCopy(vtkDataObject *src) override
Shallow and Deep copy.
ImplementationType * GetImplementation()
Implementation ImplementationType
void SetImplementation(ImplementationType *impl)
void GetCellPoints(vtkIdType cellId, vtkIdList *ptIds) override
Topological inquiry to get points defining cell.
vtkIdType InternalInsertNextCell(int type, vtkIdType npts, const vtkIdType ptIds[]) override
vtkIdType InternalInsertNextCell(int type, vtkIdList *ptIds) override
int GetMaxCellSize() override
Convenience method returns largest cell size in dataset.
void GetPointCells(vtkIdType ptId, vtkIdList *cellIds) override
Topological inquiry to get cells using point.
vtkCellIterator * NewCellIterator() override
Return an iterator that traverses the cells in this data set.
vtkSmartPointer< ImplementationType > Impl
vtkIdType InternalInsertNextCell(int type, vtkIdType npts, const vtkIdType ptIds[], vtkIdType nfaces, const vtkIdType faces[]) override
vtkMappedUnstructuredGrid()
void CopyStructure(vtkDataSet *pd) override
Copy the geometric and topological structure of an object.
void InternalReplaceCell(vtkIdType cellId, int npts, const vtkIdType pts[]) override
int IsHomogeneous() override
Traverse cells and determine if cells are all of the same type.
vtkIdType GetNumberOfCells() override
Determine the number of cells composing the dataset.
void GetIdsOfCellsOfType(int type, vtkIdTypeArray *array) override
Fill vtkIdTypeArray container with list of cell Ids.
vtkMappedUnstructuredGrid< Implementation, CellIterator > ThisType
vtkTemplateTypeMacro(SelfType, vtkUnstructuredGridBase)
~vtkMappedUnstructuredGrid() override
void Allocate(vtkIdType numCells, int extSize=1000) override
Allocate memory for the number of cells indicated.
void GetCell(vtkIdType cellId, vtkGenericCell *cell) override
Get cell with cellId such that: 0 <= cellId < NumberOfCells.
CellIterator CellIteratorType
vtkCell * GetCell(vtkIdType cellId) override
Get cell with cellId such that: 0 <= cellId < NumberOfCells.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int GetCellType(vtkIdType cellId) override
Get type of cell with cellId such that: 0 <= cellId < NumberOfCells.
vtkMTimeType GetMTime() override
Datasets are composite objects and need to check each part for MTime THIS METHOD IS THREAD SAFE.
Allocate and hold a VTK object.
Hold a reference to a vtkObjectBase instance.
dataset represents arbitrary combinations of all possible cell types.
vtkTypeUInt32 vtkMTimeType