PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ BOX2D_below()

Datum BOX2D_below ( PG_FUNCTION_ARGS  )

Definition at line 278 of file lwgeom_box.c.

References BOX2D_above(), PG_FUNCTION_INFO_V1(), GBOX::ymax, and GBOX::ymin.

Referenced by BOX2D_overbelow().

279 {
280  GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
281  GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
282 
283  PG_RETURN_BOOL(FPlt(box1->ymax, box2->ymin));
284 }
double ymin
Definition: liblwgeom.h:294
double ymax
Definition: liblwgeom.h:295
Here is the call graph for this function:
Here is the caller graph for this function: