PostGIS  2.4.9dev-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 191 of file g_box.c.

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

Referenced by gbox_same(), and test_gbox_same_2d().

192 {
193  if (g1->xmin == g2->xmin && g1->ymin == g2->ymin &&
194  g1->xmax == g2->xmax && g1->ymax == g2->ymax)
195  return LW_TRUE;
196  return LW_FALSE;
197 }
double xmax
Definition: liblwgeom.h:293
double ymin
Definition: liblwgeom.h:294
double xmin
Definition: liblwgeom.h:292
#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:295
Here is the caller graph for this function: