int GiD_fWriteGaussPoint3D(GiD_FILE fd, double x, double y, double z);
int GiD_fWriteGaussPoint2D(GiD_FILE fd, double x, double y);
Description: Write internal gauss point local coordinates (only required if InternalCoord=0)
Parameters:
GiD_FILE fd the file descriptor
double x,double y,double z
Cartesian gauss points local coordinates
Example:
C/C++
Code Block |
---|
double x=3.5; |
...
double y=-7; |
...
GiD_fWriteGaussPoint2D(fd,double x,double y); |
FORTRAN
Code Block |
---|
REAL*8 x, y |
...
rx=3.5 |
...
ry=-7 |
...
CALL GID_FWRITEGAUSSPOINT2D(fd,x,y) |