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

◆ box2df_below()

bool box2df_below ( const BOX2DF *  a,
const BOX2DF *  b 
)

Definition at line 358 of file gserialized_gist_2d.c.

359{
360 if ( !a || !b || box2df_is_empty(a) || box2df_is_empty(b) )
361 return false;
362
363 /* a.ymax < b.ymin */
364 return a->ymax < b->ymin;
365}
bool box2df_is_empty(const BOX2DF *a)

References box2df_is_empty().

Referenced by box2df_distance(), gserialized_below_2d(), gserialized_gist_consistent_internal_2d(), gserialized_gist_consistent_leaf_2d(), and gserialized_spgist_leaf_consistent_2d().

Here is the call graph for this function:
Here is the caller graph for this function: