------------------------------------------------------------------------------
| 745 | |
| 746 | //------------------------------------------------------------------------------ |
| 747 | vtkHyperTreeGridOrientedGeometryCursor* vtkHyperTreeGrid::NewOrientedGeometryCursor( |
| 748 | vtkIdType index, bool create) |
| 749 | { |
| 750 | vtkHyperTreeGridOrientedGeometryCursor* cursor = vtkHyperTreeGridOrientedGeometryCursor::New(); |
| 751 | cursor->Initialize(this, index, create); |
| 752 | return cursor; |
| 753 | } |
| 754 | |
| 755 | //------------------------------------------------------------------------------ |
| 756 | void vtkHyperTreeGrid::InitializeNonOrientedCursor( |
nothing calls this directly
no test coverage detected