PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ gbox_same_2d()

int gbox_same_2d ( const GBOX g1,
const GBOX g2 
)

Check if 2 given GBOX are the same in x and y.

Definition at line 186 of file g_box.c.

187 {
188  if (g1->xmin == g2->xmin && g1->ymin == g2->ymin &&
189  g1->xmax == g2->xmax && g1->ymax == g2->ymax)
190  return LW_TRUE;
191  return LW_FALSE;
192 }
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
double ymax
Definition: liblwgeom.h:298
double xmax
Definition: liblwgeom.h:296
double ymin
Definition: liblwgeom.h:297
double xmin
Definition: liblwgeom.h:295

References LW_FALSE, LW_TRUE, GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by gbox_same(), and test_gbox_same_2d().

Here is the caller graph for this function: