VTK  9.7.20260922
vtkDGLagrangePoints.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
3#ifndef vtkDGLagrangePoints_h
4#define vtkDGLagrangePoints_h
5
6#include "vtkDGCell.h" // For enums.
7#include "vtkLagrangePoints.h"
8
9VTK_ABI_NAMESPACE_BEGIN
10
14class VTKFILTERSCELLGRID_EXPORT vtkDGLagrangePoints : public vtkLagrangePoints
15{
16public:
18 void PrintSelf(ostream& os, vtkIndent indent) override;
20
24 vtkCellMetadata* cell, vtkCellAttribute* attribute) override;
26
28 bool GetParameters(std::vector<std::vector<double>>& params) const override;
29
30protected:
32 ~vtkDGLagrangePoints() override = default;
33
40 std::vector<int> Order;
41
42private:
44 void operator=(const vtkDGLagrangePoints&) = delete;
45};
46
47VTK_ABI_NAMESPACE_END
48#endif // vtkDGLagrangePoints_h
A function defined over the physical domain of a vtkCellGrid.
Metadata for a particular type of cell (finite element).
Shape
All possible shapes for DG cells.
Definition vtkDGCell.h:71
@ None
A placeholder for an indeterminate or invalid shape.
Definition vtkDGCell.h:81
static vtkDGLagrangePoints * New()
vtkSmartPointer< vtkCellAttributeCalculator > PrepareForGrid(vtkCellMetadata *cell, vtkCellAttribute *attribute) override
vtkDGLagrangePoints()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkStringToken FunctionSpace
HGRAD, Bezier, …
std::vector< int > Order
The nominal (not total) polynomial order along each parametric axis.
~vtkDGLagrangePoints() override=default
bool GetParameters(std::vector< std::vector< double > > &params) const override
Return the parametric coordinate of each degree of freedom.
a simple class to control print indentation
Definition vtkIndent.h:108
vtkLagrangePoints()=default
Hold a reference to a vtkObjectBase instance.
Represent a string by its integer hash.