/*========================================================================= Program: Visualization Toolkit Module: vtkHyperTreeGridNonOrientedCursor.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright Nonice for more information. =========================================================================*/ /** * @class vtkHyperTreeGridNonOrientedCursor * @brief Objects for traversal a HyperTreeGrid. * * JB A REVOIR * Objects that can perform depth traversal of a hyper tree grid, * take into account more parameters (related to the grid structure) than * the compact hyper tree cursor implemented in vtkHyperTree can. * This is an abstract class. * Cursors are created by the HyperTreeGrid implementation. * * @sa * vtkHyperTreeCursor vtkHyperTree vtkHyperTreeGrid * * @par Thanks: * This class was written by Guenole Harel and Jacques-Bernard Lekien, 2014. * This class was re-written by Philippe Pebay, 2016. * JB This class was re-written for more optimisation by Jacques-Bernard Lekien, * Guenole Harel and Jerome Dubois, 2018. * This work was supported by Commissariat a l'Energie Atomique * CEA, DAM, DIF, F-91297 Arpajon, France. */ #ifndef vtkHyperTreeGridNonOrientedCursor_h #define vtkHyperTreeGridNonOrientedCursor_h #include "vtkCommonDataModelModule.h" // For export macro #include "vtkObject.h" #include // For std::vector class vtkHyperTree; class vtkHyperTreeGrid; class vtkHyperTreeGridEntry; class VTKCOMMONDATAMODEL_EXPORT vtkHyperTreeGridNonOrientedCursor : public vtkObject { public: vtkTypeMacro(vtkHyperTreeGridNonOrientedCursor, vtkObject); void PrintSelf(ostream& os, vtkIndent indent) override; static vtkHyperTreeGridNonOrientedCursor* New(); /** * Create a copy of `this'. * \post results_exists:result!=0 */ vtkHyperTreeGridNonOrientedCursor* Clone(); /** * Initialize cursor at root of given tree index in grid. */ void Initialize(vtkHyperTreeGrid* grid, vtkIdType treeIndex, bool create = false); /** * Initialize cursor at root of given tree index in grid. */ void Initialize( vtkHyperTreeGrid* grid, vtkHyperTree* tree, unsigned int level, vtkHyperTreeGridEntry& entry); /** * Initialize cursor at root of given tree index in grid. */ void Initialize(vtkHyperTreeGrid* grid, vtkHyperTree* tree, unsigned int level, vtkIdType index); //@{ /** * Set the hyper tree grid to which the cursor is pointing. */ vtkHyperTreeGrid* GetGrid(); //@} //@{ /** * Return if a Tree pointing exist */ bool HasTree() const; //@} //@{ /** * Set the hyper tree to which the cursor is pointing. */ vtkHyperTree* GetTree() const; //@} /** * Return the index of the current vertex in the tree. */ vtkIdType GetVertexId(); /** * Return the global index (relative to the grid) of the * current vertex in the tree. */ vtkIdType GetGlobalNodeIndex(); /** * Return the dimension of the tree. * \post positive_result: result>0 */ unsigned char GetDimension(); /** * Return the number of children for each node (non-vertex leaf) of the tree. * \post positive_number: result>0 */ unsigned char GetNumberOfChildren(); /** * JB */ void SetGlobalIndexStart(vtkIdType index); /** * JB */ void SetGlobalIndexFromLocal(vtkIdType index); /** * Set the blanking mask is empty or not * \pre not_tree: tree */ void SetMask(bool state); /** * Determine whether blanking mask is empty or not */ bool IsMasked(); /** * Is the cursor pointing to a leaf? */ bool IsLeaf(); /** * JB */ void SubdivideLeaf(); /** * Is the cursor at tree root? */ bool IsRoot(); /** * Get the level of the tree vertex pointed by the cursor. */ unsigned int GetLevel(); /** * Move the cursor to child `child' of the current vertex. * \pre not_tree: HasTree() * \pre not_leaf: !IsLeaf() * \pre valid_child: ichild>=0 && ichild Entries; private: vtkHyperTreeGridNonOrientedCursor(const vtkHyperTreeGridNonOrientedCursor&) = delete; void operator=(const vtkHyperTreeGridNonOrientedCursor&) = delete; }; #endif