PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ box2df_from_gbox_p()

static int box2df_from_gbox_p ( GBOX box,
BOX2DF *  a 
)
inlinestatic

Definition at line 283 of file gserialized_gist_2d.c.

References LW_SUCCESS, next_float_down(), next_float_up(), GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by gserialized_datum_get_box2df_p().

284 {
285  a->xmin = next_float_down(box->xmin);
286  a->xmax = next_float_up(box->xmax);
287  a->ymin = next_float_down(box->ymin);
288  a->ymax = next_float_up(box->ymax);
289  return LW_SUCCESS;
290 }
double xmax
Definition: liblwgeom.h:293
#define LW_SUCCESS
Definition: liblwgeom.h:80
float next_float_down(double d)
Definition: lwgeom_api.c:51
float next_float_up(double d)
Definition: lwgeom_api.c:72
double ymin
Definition: liblwgeom.h:294
double xmin
Definition: liblwgeom.h:292
double ymax
Definition: liblwgeom.h:295
Here is the call graph for this function:
Here is the caller graph for this function: