1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkHyperTreeGridNonOrientedMooreSuperCursorLight
* @brief Objects for traversal a HyperTreeGrid.
*
* 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
* 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.
* This class was re-written and optimized 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 vtkHyperTreeGridNonOrientedMooreSuperCursorLight_h
#define vtkHyperTreeGridNonOrientedMooreSuperCursorLight_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkHyperTreeGridNonOrientedSuperCursorLight.h"
VTK_ABI_NAMESPACE_BEGIN
class vtkIdList;
class vtkHyperTree;
class vtkHyperTreeGrid;
class VTKCOMMONDATAMODEL_EXPORT vtkHyperTreeGridNonOrientedMooreSuperCursorLight
: public vtkHyperTreeGridNonOrientedSuperCursorLight
{
public:
vtkTypeMacro(
vtkHyperTreeGridNonOrientedMooreSuperCursorLight, vtkHyperTreeGridNonOrientedSuperCursorLight);
void PrintSelf(ostream& os, vtkIndent indent) override;
static vtkHyperTreeGridNonOrientedMooreSuperCursorLight* New();
/**
* Initialize cursor at root of given tree index in grid.
* "create" only applies on the central HT
*/
void Initialize(vtkHyperTreeGrid* grid, vtkIdType treeIndex, bool create = false) override;
/**
* Return the list of cursors pointing to the leaves touching a
* given corner of the cell.
* Return whether the considered cell is the owner of said corner.
* Used by filters vtkHyperTreeGridContour and vtkHyperTreeGridPlaneCutter.
*/
bool GetCornerCursors(unsigned int, unsigned int, vtkIdList*);
protected:
/**
* Constructor
*/
vtkHyperTreeGridNonOrientedMooreSuperCursorLight() = default;
/**
* Destructor
*/
~vtkHyperTreeGridNonOrientedMooreSuperCursorLight() override;
private:
vtkHyperTreeGridNonOrientedMooreSuperCursorLight(
const vtkHyperTreeGridNonOrientedMooreSuperCursorLight&) = delete;
void operator=(const vtkHyperTreeGridNonOrientedMooreSuperCursorLight&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif
|