PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ box2df_overbelow()

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

Definition at line 347 of file gserialized_gist_2d.c.

348 {
349  if ( !a || !b || box2df_is_empty(a) || box2df_is_empty(b) )
350  return false;
351 
352  /* a.ymax <= b.ymax */
353  return a->ymax <= b->ymax;
354 }
bool box2df_is_empty(const BOX2DF *a)

References box2df_is_empty().

Referenced by gserialized_gist_consistent_internal_2d(), gserialized_gist_consistent_leaf_2d(), gserialized_overbelow_2d(), and gserialized_spgist_leaf_consistent_2d().

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