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

◆ gbox_contains_2d()

int gbox_contains_2d ( const GBOX g1,
const GBOX g2 
)

Return LW_TRUE if the first GBOX contains the second on the 2d plane, LW_FALSE otherwise.

Definition at line 339 of file gbox.c.

340{
341 if ( ( g2->xmin < g1->xmin ) || ( g2->xmax > g1->xmax ) ||
342 ( g2->ymin < g1->ymin ) || ( g2->ymax > g1->ymax ) )
343 {
344 return LW_FALSE;
345 }
346 return LW_TRUE;
347}
#define LW_FALSE
Definition liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition liblwgeom.h:93
double ymax
Definition liblwgeom.h:357
double xmax
Definition liblwgeom.h:355
double ymin
Definition liblwgeom.h:356
double xmin
Definition liblwgeom.h:354

References LW_FALSE, LW_TRUE, GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by _lwt_FindFaceContainingRing(), contains(), containsproperly(), covers(), and mvt_unsafe_clip_by_box().

Here is the caller graph for this function: