PolyDiM
C++ library for POLYtopal DIscretization Methods
Loading...
Searching...
No Matches
Quadrature_Gauss3D_Tetrahedron.hpp
Go to the documentation of this file.
1// _LICENSE_HEADER_
2//
3// Copyright (C) 2019 - 2025.
4// Terms register on the GPL-3.0 license.
5//
6// This file can be redistributed and/or modified under the license terms.
7//
8// See top level LICENSE file for more details.
9//
10// This file can be used citing references in CITATION.cff file.
11
12#ifndef __Quadrature_Gauss3D_Tetrahedron_H
13#define __Quadrature_Gauss3D_Tetrahedron_H
14
15#include "QuadratureData.hpp"
16
17namespace Gedim
18{
19namespace Quadrature
20{
23{
24 public:
25 static QuadratureData FillPointsAndWeights(const unsigned int &order);
26};
27} // namespace Quadrature
28} // namespace Gedim
29
30#endif // __Quadrature_Gauss3D_Tetrahedron_H
Eigen column vector.
Definition Eigen_Array.hpp:23
Gauss quadrature rule for Tetrahedrons.
Definition Quadrature_Gauss3D_Tetrahedron.hpp:23
static QuadratureData FillPointsAndWeights(const unsigned int &order)
Definition Quadrature_Gauss3D_Tetrahedron.cpp:18
Definition Eigen_Array.cpp:22
Definition QuadratureData.hpp:22