1
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
3
// See the LICENSE.txt file for license information. Please report all
4
// bugs and problems to <gmsh@geuz.org>.
7
#include "GaussLegendre1D.h"
9
IntPt * GQL[20] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
11
IntPt *getGQLPts(int order)
17
gmshGaussLegendre1D(n,&pt,&wt);
18
GQL[index] = new IntPt[n];
19
for(int i=0; i < n; i++) {
20
GQL[index][i].pt[0] = pt[i];
21
GQL[index][i].pt[1] = 0.0;
22
GQL[index][i].pt[2] = 0.0;
23
GQL[index][i].weight = wt[i];
29
int getNGQLPts(int order)