PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ BOX2D_same()

Datum BOX2D_same ( PG_FUNCTION_ARGS  )

Definition at line 175 of file lwgeom_box.c.

References BOX2D_overlap(), FPeq, PG_FUNCTION_INFO_V1(), GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by LWGEOM_to_BOX2DF().

176 {
177  GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
178  GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
179 
180  PG_RETURN_BOOL(FPeq(box1->xmax, box2->xmax) &&
181  FPeq(box1->xmin, box2->xmin) &&
182  FPeq(box1->ymax, box2->ymax) &&
183  FPeq(box1->ymin, box2->ymin));
184 }
double xmax
Definition: liblwgeom.h:293
double ymin
Definition: liblwgeom.h:294
double xmin
Definition: liblwgeom.h:292
double ymax
Definition: liblwgeom.h:295
#define FPeq(A, B)
Definition: box2d.c:37
Here is the call graph for this function:
Here is the caller graph for this function: