------------------------------------------------------------------------------
| 29 | |
| 30 | //------------------------------------------------------------------------------ |
| 31 | void vtkHyperTreeGridValidCellStrategy::Initialize(vtkHyperTreeGrid* inputHTG) |
| 32 | { |
| 33 | this->ValidCellsArray->SetName(this->ArrayName.c_str()); |
| 34 | this->ValidCellsArray->SetNumberOfComponents(1); |
| 35 | this->ValidCellsArray->SetNumberOfTuples(inputHTG->GetNumberOfCells()); |
| 36 | this->ValidCellsArray->Fill(0); |
| 37 | |
| 38 | this->InputGhost = inputHTG->GetGhostCells(); |
| 39 | } |
| 40 | |
| 41 | //------------------------------------------------------------------------------ |
| 42 | void vtkHyperTreeGridValidCellStrategy::Compute(vtkHyperTreeGridNonOrientedGeometryCursor* cursor) |
nothing calls this directly
no test coverage detected