PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ box2df_below()

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

Definition at line 408 of file gserialized_gist_2d.c.

References FALSE.

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

409 {
410  if ( ! a || ! b ) return FALSE; /* TODO: might be smarter for EMPTY */
411 
412  /* a.ymax < b.ymin */
413  return a->ymax < b->ymin;
414 }
#define FALSE
Definition: dbfopen.c:168
Here is the caller graph for this function: