----------------------------------------------------------------------------------------------
| 142 | |
| 143 | //---------------------------------------------------------------------------------------------- |
| 144 | void 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 | //---------------------------------------------------------------------------------------------- |
| 161 | void vtkHyperTreeGridFeatureEdges::RecursivelyProcess1DHTGTree(vtkHyperTreeGrid* input, |
no test coverage detected