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

Method Process1DHTG

Filters/HyperTree/vtkHyperTreeGridFeatureEdges.cxx:110–124  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

108
109//----------------------------------------------------------------------------------------------
110void vtkHyperTreeGridFeatureEdges::Process1DHTG(
111 vtkHyperTreeGrid* input, vtkPoints* outPoints, vtkCellArray* outCells)
112{
113 vtkHyperTreeGrid::vtkHyperTreeGridIterator it;
114 input->InitializeTreeIterator(it);
115
116 vtkIdType hyperTreeId;
117 vtkNew<vtkHyperTreeGridNonOrientedGeometryCursor> cursor;
118
119 while (it.GetNextTree(hyperTreeId))
120 {
121 input->InitializeNonOrientedGeometryCursor(cursor, hyperTreeId);
122 this->RecursivelyProcess1DHTGTree(input, outPoints, outCells, cursor);
123 }
124}
125
126//----------------------------------------------------------------------------------------------
127void vtkHyperTreeGridFeatureEdges::Process2DHTG(

Callers 1

ProcessTreesMethod · 0.95

Tested by

no test coverage detected