----------------------------------------------------------------------------------------------
| 108 | |
| 109 | //---------------------------------------------------------------------------------------------- |
| 110 | void 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 | //---------------------------------------------------------------------------------------------- |
| 127 | void vtkHyperTreeGridFeatureEdges::Process2DHTG( |
no test coverage detected