get/set the min_vec and max_vec coordinate extents in a Grid
int FLDget_coord_extent (
OMobj_id field,
float *min_extent,
float *max_extent);
int FLDset_coord_extent (
OMobj_id field,
float *min_extent,
float *max_extent,
int nspace);
These routines get and set the min_vec and max_vec coordinate extents in a Grid.
By default, the min_vec and max_vec values are defined as functions:
float min_vec[veclen] = min_array(values, null_flag, null_value);
float max_vec[veclen] = max_array (values, null_flag, null_value);
Normally, there is no need to ever actively set these values.
FLDget_coord_extent returns the values of these functions. If the data in the values array changes, the value of the function automatically changes.
FLDset_coord_extent replaces the values produced by the function with the values you want to appear.
float *min_extent
float *max_extent
modules/cut_gen.c
modules/cut_pyr.c
modules/scat_tet.c