PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ BOX2D_right()

Datum BOX2D_right ( PG_FUNCTION_ARGS  )

Definition at line 241 of file lwgeom_box.c.

242 {
243  GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
244  GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
245 
246  PG_RETURN_BOOL(FPgt(box1->xmin, box2->xmax));
247 }
double xmax
Definition: liblwgeom.h:355
double xmin
Definition: liblwgeom.h:354

References GBOX::xmax, and GBOX::xmin.