MCPcopy Create free account
hub / github.com/Kitware/VTK / Process2DHTG

Method Process2DHTG

Filters/HyperTree/vtkHyperTreeGridFeatureEdges.cxx:127–141  ·  view source on GitHub ↗

----------------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

125
126//----------------------------------------------------------------------------------------------
127void vtkHyperTreeGridFeatureEdges::Process2DHTG(
128 vtkHyperTreeGrid* input, vtkPoints* outPoints, vtkCellArray* outCells)
129{
130 vtkHyperTreeGrid::vtkHyperTreeGridIterator it;
131 input->InitializeTreeIterator(it);
132
133 vtkIdType hyperTreeId;
134 vtkNew<vtkHyperTreeGridNonOrientedVonNeumannSuperCursor> cursor;
135
136 while (it.GetNextTree(hyperTreeId))
137 {
138 input->InitializeNonOrientedVonNeumannSuperCursor(cursor, hyperTreeId);
139 this->RecursivelyProcess2DHTGTree(input, outPoints, outCells, cursor);
140 }
141}
142
143//----------------------------------------------------------------------------------------------
144void vtkHyperTreeGridFeatureEdges::Process3DHTG(

Callers 1

ProcessTreesMethod · 0.95

Tested by

no test coverage detected