PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ box2df_overleft()

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

Definition at line 313 of file gserialized_gist_2d.c.

314 {
315  if ( !a || !b || box2df_is_empty(a) || box2df_is_empty(b) )
316  return false;
317 
318  /* a.xmax <= b.xmax */
319  return a->xmax <= b->xmax;
320 }
bool box2df_is_empty(const BOX2DF *a)

References box2df_is_empty().

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

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