------------------------------------------------------------------------------
| 38 | |
| 39 | //------------------------------------------------------------------------------ |
| 40 | vtkHyperTree* vtkHyperTreeGridGeometryEntry::Initialize( |
| 41 | vtkHyperTreeGrid* grid, vtkIdType treeIndex, bool create) |
| 42 | { |
| 43 | this->Index = 0; |
| 44 | grid->GetLevelZeroOriginFromIndex(treeIndex, this->Origin); |
| 45 | return grid->GetTree(treeIndex, create); |
| 46 | } |
| 47 | |
| 48 | //------------------------------------------------------------------------------ |
| 49 | vtkIdType vtkHyperTreeGridGeometryEntry::GetGlobalNodeIndex(const vtkHyperTree* tree) const |
nothing calls this directly
no test coverage detected