VTK  9.7.20260922
vtkLagrangePoints.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 vtkLagrangePoints_h
4#define vtkLagrangePoints_h
5
7#include "vtkFiltersCellGridModule.h" // For export macro.
8
9#include <vector>
10
11VTK_ABI_NAMESPACE_BEGIN
12
16class VTKFILTERSCELLGRID_EXPORT vtkLagrangePoints : public vtkCellAttributeCalculator
17{
18public:
20 void PrintSelf(ostream& os, vtkIndent indent) override;
21
31 virtual bool GetParameters(std::vector<std::vector<double>>& params) const = 0;
33
34protected:
35 vtkLagrangePoints() = default;
36 ~vtkLagrangePoints() override = default;
37
38private:
39 vtkLagrangePoints(const vtkLagrangePoints&) = delete;
40 void operator=(const vtkLagrangePoints&) = delete;
41};
42
43VTK_ABI_NAMESPACE_END
44#endif // vtkLagrangePoints_h
vtkCellAttributeCalculator()=default
a simple class to control print indentation
Definition vtkIndent.h:108
virtual bool GetParameters(std::vector< std::vector< double > > &params) const =0
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkLagrangePoints()=default
~vtkLagrangePoints() override=default