PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ BOX2D_right()

Datum BOX2D_right ( PG_FUNCTION_ARGS  )

Definition at line 238 of file lwgeom_box.c.

239 {
240  GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
241  GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
242 
243  PG_RETURN_BOOL(FPgt(box1->xmin, box2->xmax));
244 }
double xmax
Definition: liblwgeom.h:341
double xmin
Definition: liblwgeom.h:340

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