PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ BOX2D_left()

Datum BOX2D_left ( PG_FUNCTION_ARGS  )

Definition at line 228 of file lwgeom_box.c.

References BOX2D_right(), PG_FUNCTION_INFO_V1(), GBOX::xmax, and GBOX::xmin.

Referenced by BOX2D_overleft().

229 {
230  GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
231  GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
232 
233  PG_RETURN_BOOL(FPlt(box1->xmax, box2->xmin));
234 }
double xmax
Definition: liblwgeom.h:293
double xmin
Definition: liblwgeom.h:292
Here is the call graph for this function:
Here is the caller graph for this function: