----------------------------------------------------------------------------------------------
| 125 | |
| 126 | //---------------------------------------------------------------------------------------------- |
| 127 | void 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 | //---------------------------------------------------------------------------------------------- |
| 144 | void vtkHyperTreeGridFeatureEdges::Process3DHTG( |
no test coverage detected