int GiD_fWriteRange(GiD_FILE fd,double min,double max,const char* name);
int GiD_fWriteMinRange(GiD_FILE fd,double max,const char* name);
int GiD_fWriteMaxRange(GiD_FILE fd,double min,const char* name);
Description:Write Range functions. Must be between GiD_fBeginRangeTable
and GiD_fEndRangeTable.
fWriteMinRange : write a range with an implicit minimum value,
the minimum absolute in the result set.
fWriteRange : write an explicit range.
fWritemaxRange: write a range with an implicit maximum value,
the maximum absolute in the result set.
Parameters:
GiD_FILE fd the file descriptor
double min, double max
Values to define a interval
char* name
string asociated associated to be showed for this interval
Example:
C/C++
Code Block |
---|
GiD_fWriteRange(fd,0.0,100.0,"Normal"); |
FORTRAN
Code Block |
---|
CALL GID_FWRITERANGE(fd,0.0,100.0,'Normal') |