PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ BOX2D_overabove()

Datum BOX2D_overabove ( PG_FUNCTION_ARGS  )

Definition at line 301 of file lwgeom_box.c.

302{
303 GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
304 GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
305
306 PG_RETURN_BOOL(FPge(box1->ymin, box2->ymin));
307}
double ymin
Definition liblwgeom.h:342

References GBOX::ymin.