Gauss_Point.cpp (getdp-3.4.0-source.tgz) | : | Gauss_Point.cpp (getdp-3.5.0-source.tgz) | ||
---|---|---|---|---|
// GetDP - Copyright (C) 1997-2021 P. Dular and C. Geuzaine, University of Liege | // GetDP - Copyright (C) 1997-2022 P. Dular and C. Geuzaine, University of Liege | |||
// | // | |||
// See the LICENSE.txt file for license information. Please report all | // See the LICENSE.txt file for license information. Please report all | |||
// issues on https://gitlab.onelab.info/getdp/getdp/issues. | // issues on https://gitlab.onelab.info/getdp/getdp/issues. | |||
/* Gauss integration over a point (!) */ | /* Gauss integration over a point (!) */ | |||
void Gauss_Point(int Nbr_Points, int Num, | void Gauss_Point(int Nbr_Points, int Num, double *u, double *v, double *w, | |||
double *u, double *v, double *w, double *wght) | double *wght) | |||
{ | { | |||
*u = 0. ; *v = 0. ; *w = 0. ; *wght = 1. ; | *u = 0.; | |||
*v = 0.; | ||||
*w = 0.; | ||||
*wght = 1.; | ||||
} | } | |||
End of changes. 3 change blocks. | ||||
4 lines changed or deleted | 7 lines changed or added |