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

Method Process3DHTG

Filters/HyperTree/vtkHyperTreeGridFeatureEdges.cxx:144–158  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

142
143//----------------------------------------------------------------------------------------------
144void vtkHyperTreeGridFeatureEdges::Process3DHTG(
145 vtkHyperTreeGrid* input, vtkPoints* outPoints, vtkCellArray* outCells)
146{
147 vtkHyperTreeGrid::vtkHyperTreeGridIterator it;
148 input->InitializeTreeIterator(it);
149
150 vtkIdType hyperTreeId;
151 vtkNew<vtkHyperTreeGridNonOrientedMooreSuperCursor> cursor;
152
153 while (it.GetNextTree(hyperTreeId))
154 {
155 input->InitializeNonOrientedMooreSuperCursor(cursor, hyperTreeId);
156 this->RecursivelyProcess3DHTGTree(input, outPoints, outCells, cursor);
157 }
158}
159
160//----------------------------------------------------------------------------------------------
161void vtkHyperTreeGridFeatureEdges::RecursivelyProcess1DHTGTree(vtkHyperTreeGrid* input,

Callers 1

ProcessTreesMethod · 0.95

Tested by

no test coverage detected