...
Parameters:
GiD_FILE fd the file descriptor
For GiD_fWriteNurbsSurface and GiD_fWriteNurbsSurfaceVector:
n: the number of control points
num_comp: number of vector components
v: the results in order like:
R1 = u1, v1
R2 = u1, v2
R3 = u1, v3
...
Rn = u1, vn
Rn+1 = u2,v1
Rn+2= u2,v2
Rn+3=u2,v3
R2n=u2,vn
....
Rk=um,vn
where u and v are nurbs directions.
In case that one result is not defined use GP_UNKNOWN.
Note: GP_UNKNOWN is a special real value that is defined as (float)-3.40282346638528860e+38 and has a special meaning for GiD as NO_RESULT. Must not be operated like the rest of real numbers.
Example:
C/C++
Code Block |
---|
GiD_fWriteScalar(fd,3,4.6); |
...