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 79
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkHyperTreeGridToDualGrid
* @brief Convert hyper tree grid to the dual unstructured grid.
*
* This filter is the new home for what was the dataset API within the
* vtkHyperTreeGrid class.
*/
#ifndef vtkHyperTreeGridToDualGrid_h
#define vtkHyperTreeGridToDualGrid_h
#include "vtkFiltersHyperTreeModule.h" // For export macro
#include "vtkHyperTreeGridAlgorithm.h"
#include <map> // std::map
VTK_ABI_NAMESPACE_BEGIN
class vtkHyperTreeGrid;
class vtkHyperTreeGridNonOrientedMooreSuperCursor;
class vtkIdTypeArray;
class vtkUnstructuredGrid;
class vtkPoints;
class VTKFILTERSHYPERTREE_EXPORT vtkHyperTreeGridToDualGrid : public vtkHyperTreeGridAlgorithm
{
public:
static vtkHyperTreeGridToDualGrid* New();
vtkTypeMacro(vtkHyperTreeGridToDualGrid, vtkHyperTreeGridAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) override;
protected:
vtkHyperTreeGridToDualGrid();
~vtkHyperTreeGridToDualGrid() override;
/**
* For this algorithm the output is a vtkUnstructuredGrid instance
*/
int FillOutputPortInformation(int, vtkInformation*) override;
/**
* Main routine to convert the grid of tree into an unstructured grid
*/
int ProcessTrees(vtkHyperTreeGrid*, vtkDataObject*) override;
private:
vtkHyperTreeGridToDualGrid(const vtkHyperTreeGridToDualGrid&) = delete;
void operator=(const vtkHyperTreeGridToDualGrid&) = delete;
void TraverseDualRecursively(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkHyperTreeGrid* in);
void GenerateDualCornerFromLeaf1D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkHyperTreeGrid* in);
void GenerateDualCornerFromLeaf2D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkHyperTreeGrid* in);
void GenerateDualCornerFromLeaf3D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkHyperTreeGrid* in);
void TraverseDualRecursively(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkBitArray* mask, vtkHyperTreeGrid* in);
void ShiftDualCornerFromMaskedLeaf2D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkBitArray* mask, vtkHyperTreeGrid* in);
void ShiftDualCornerFromMaskedLeaf3D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkBitArray* mask, vtkHyperTreeGrid* in);
void GenerateDualCornerFromLeaf2D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkBitArray* mask, vtkHyperTreeGrid* in);
void GenerateDualCornerFromLeaf3D(
vtkHyperTreeGridNonOrientedMooreSuperCursor* cursor, vtkBitArray* mask, vtkHyperTreeGrid* in);
vtkPoints* Points;
vtkIdTypeArray* Connectivity;
std::map<vtkIdType, bool> PointShifted;
std::map<vtkIdType, double> PointShifts[3];
std::map<vtkIdType, double> ReductionFactors;
};
VTK_ABI_NAMESPACE_END
#endif /* vtkHyperTreeGridToDualGrid_h */
|