Skip to content
Snippets Groups Projects
Commit 8e8be2a5 authored by Bastien Gorissen's avatar Bastien Gorissen
Browse files

Grouped points generation methods for elements into a single file.

parent 9cbc1ea9
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ set(SRC
BergotBasis.cpp
jacobiPolynomials.cpp
legendrePolynomials.cpp
pointsGenerators.cpp
GaussIntegration.cpp
GaussQuadratureLin.cpp
GaussQuadratureTri.cpp
......
This diff is collapsed.
// Gmsh - Copyright (C) 1997-2012 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#ifndef POINTSGENERATORS_H
#define POINTSGENERATORS_H
#include "fullMatrix.h"
/*
* Functions to generate point distributions on
* the references elements, for all orders.
*/
/* --- Lines --- */
fullMatrix<double> gmshGeneratePointsLine(int order);
/* --- Triangles --- */
fullMatrix<double> gmshGeneratePointsTriangle(int order, bool serendip);
/* --- Quadrangles --- */
fullMatrix<double> gmshGeneratePointsQuadrangle(int order, bool serendip);
/* --- Tetahedra --- */
fullMatrix<double> gmshGeneratePointsTetrahedron(int order, bool serendip);
/* --- Hexahedra --- */
fullMatrix<double> gmshGeneratePointsHexahedron(int order, bool serendip);
/* --- Prisms --- */
fullMatrix<double> gmshGeneratePointsPrism(int order, bool serendip);
/* --- Pyramids --- */
fullMatrix<double> gmshGeneratePointsPyramid(int order, bool serendip);
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment