Over the next few days/weeks, we’ll be merging in some major changes to vtkCellArray
to support new functionality. This involves some significant changes to the vtkCellArray’s internal data structures, but we’ve retained as much of the older API as possible.
The change is motivated by two goals:
-
Split the current connectivity array into Offsets and Connectivity. This will allow random-access directly into the cell array, and ease integration with other toolkits and rendering systems.
-
Allow the arrays to be stored as either 32-bit or 64-bit integers, regardless of VTK_USE_64BIT_IDS. This will (a) allow smaller datasets to use less memory by switching to 32-bit arrays, and (b) allow better zero-copy integration with datasets that might be using a different sized integer than what VTK was built with. The API will still use vtkIdType.
We’ve provided legacy implementations for as much of the older API as possible, but in particular, GetPointer and WritePointer had to be completely removed, since they simply cannot be supported with the new internals. New methods (ExportLegacyFormat
, ImportLegacyFormat
, and AppendLegacyFormat
) can be used to simplify porting to the new API.
A new preprocessor definition, VTK_CELL_ARRAY_V2
, is defined when the new vtkCellArray API is active to make it easier to support both the old and new APIs in external projects. It can be used to switch between legacy and modern usages of the class.
Patches are ready for VTK proper, the WikiExamples repo, VTK’s remote modules, ParaView, ParaView’s VisitBridge.
The merge request tha updates VTK is here: https://gitlab.kitware.com/vtk/vtk/merge_requests/5682
The new class documentation covers the changes, so I’ll just include that to give a summary of the changes:
vtkCellArray
class documentation
vtkCellArray stores dataset topologies as an explicit connectivity table
listing the point ids that make up each cell.
Internally, the connectivity table is represented as two arrays: Offsets and
Connectivity.
Offsets is an array of [numCells+1] values indicating the index in the
Connectivity array where each cell’s points start. The last value is always
the length of the Connectivity array.
The Connectivity array stores the lists of point ids for each cell.
Thus, for a dataset consisting of 2 triangles, a quad, and a line, the
internal arrays will appear as follows:
Topology:
---------
Cell 0: Triangle | point ids: {0, 1, 2}
Cell 1: Triangle | point ids: {5, 7, 2}
Cell 2: Quad | point ids: {3, 4, 6, 7}
Cell 4: Line | point ids: {5, 8}
vtkCellArray (current):
-----------------------
Offsets: {0, 3, 6, 10, 12}
Connectivity: {0, 1, 2, 5, 7, 2, 3, 4, 6, 7, 5, 8}
While this class provides traversal methods (InitTraversal, GetNextCell),
these are not thread-safe and are a bit difficult to use correctly as they
do not use the typical VTK iterator API. Prefer to use a local
vtkCellArrayIterator object, which can be obtained via:
auto iter = vtk::TakeSmartPointer(cellArray->NewIterator());
for (iter->GoToFirstCell(); !iter->IsDoneWithTraversal(); iter->GoToNextCell())
{
// do work with iter
}
The internal arrays may store either 32- or 64-bit values, though most of the API
will prefer to use vtkIdType to refer to items in these arrays. This enables
significant memory savings when vtkIdType is 64-bit, but 32 bits are
sufficient to store all of the values in the connectivity table. Using
64-bit storage with a 32-bit vtkIdType is permitted, but values too large to
fit in a 32-bit signed integer will be truncated when accessed through the
API.
Methods for managing the storage type are:
bool IsStorage64Bit()
void Use32BitStorage()
void Use64BitStorage()
void UseDefaultStorage() // Depends on vtkIdType
bool CanConvertTo32BitStorage()
bool CanConvertTo64BitStorage()
bool CanConvertToDefaultStorage() // Depends on vtkIdType
bool ConvertTo32BitStorage()
bool ConvertTo64BitStorage()
bool ConvertToDefaultStorage() // Depends on vtkIdType
bool ConvertToSmallestStorage() // Depends on current values in arrays
Note that some methods are still available that reflect the previous
storage format of this data, which embedded the cell sizes into the
Connectivity array:
vtkCellArray (legacy):
----------------------
Connectivity: {3, 0, 1, 2, 3, 5, 7, 2, 4, 3, 4, 6, 7, 2, 5, 8}
|--Cell 0--||--Cell 1--||----Cell 2---||--C3-|
The methods require an external lookup table to allow random access, which
was historically stored in the vtkCellTypes object. The following methods in
vtkCellArray still support this style of indexing for compatibility
purposes, but these are slow as they must perform some complex computations
to convert the old “location” into the new “offset” and should be avoided.
These methods (and their modern equivalents) are:
- GetCell (Prefer GetCellAtId)
- GetInsertLocation (Prefer GetNumberOfCells)
- GetTraversalLocation (Prefer GetTraversalCellId, or better, NewIterator)
- SetTraversalLocation (Prefer SetTraversalLocation, or better, NewIterator)
- ReverseCell (Prefer ReverseCellAtId)
- ReplaceCell (Prefer ReplaceCellAtId)
- SetCells (Use ImportLegacyFormat, or SetData)
- GetData (Use ExportLegacyFormat, or Get[Offsets|Connectivity]Array[|32|64])
Some other methods were completely removed, such as GetPointer
/
WritePointer
, since they are simply not able to be emulated under the current
design.