// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause /** * @class vtkDGPyr * @brief Metadata for a discontinuous Galerkin pyramid. * * Currently, only a linear shape is supported but this * may change to arbitrary order. */ #ifndef vtkDGPyr_h #define vtkDGPyr_h #include "vtkFiltersCellGridModule.h" // for export macro #include "vtkDGCell.h" #include "vtkStringToken.h" // for vtkStringToken::Hash VTK_ABI_NAMESPACE_BEGIN class vtkCellGrid; class vtkDataSetAttributes; class vtkCellAttribute; class VTKFILTERSCELLGRID_EXPORT vtkDGPyr : public vtkDGCell { public: static vtkDGPyr* New(); vtkTypeMacro(vtkDGPyr, vtkDGCell); vtkInheritanceHierarchyOverrideMacro(vtkDGPyr); void PrintSelf(ostream& os, vtkIndent indent) override; ///@{ /// Methods to query cell shape and reference parameterization. /// /// These methods do not return information about particular /// cells or sides specified by the cell-grid's arrays; only /// metadata about the cell. bool IsInside(const vtkVector3d& rst, double tolerance) override; Shape GetShape() const override { return Shape::Pyramid; } int GetDimension() const override { return Dimension; } const std::array& GetCornerParameter(int corner) const override; int GetNumberOfSideTypes() const override; std::pair GetSideRangeForType(int sideType) const override; int GetNumberOfSidesOfDimension(int dimension) const override; const std::vector& GetSideConnectivity(int side) const override; const std::vector& GetSidesOfSide(int side) const override; Shape GetSideShape(int side) const override; ///@} vtkTypeFloat32Array* GetReferencePoints() const override; vtkTypeInt32Array* GetSideConnectivity() const override; vtkTypeInt32Array* GetSideOffsetsAndShapes() const override; static constexpr int Dimension = 3; static const std::array, 5> Parameters; static const std::array, 19> Sides; static const std::array, 19> SidesOfSides; static const std::array SideOffsets; static const std::array SideShapes; // Because pyramids have sides of different types but the same dimension, // we store a table of the number of sides by dimension rather than computing // these values based on SideOffsets/SideShapes entries: static const std::array SidesOfDimension; protected: vtkDGPyr(); ~vtkDGPyr() override; private: vtkDGPyr(const vtkDGPyr&) = delete; void operator=(const vtkDGPyr&) = delete; }; VTK_ABI_NAMESPACE_END #endif