PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ nd_box_intersects()

static int nd_box_intersects ( const ND_BOX a,
const ND_BOX b,
int  ndims 
)
static

Return true if ND_BOX a overlaps b, false otherwise.

Definition at line 610 of file gserialized_estimate.c.

611 {
612  int d;
613  for ( d = 0; d < ndims; d++ )
614  {
615  if ( (a->min[d] > b->max[d]) || (a->max[d] < b->min[d]) )
616  return false;
617  }
618  return true;
619 }
float4 max[ND_DIMS]
float4 min[ND_DIMS]

References ND_BOX_T::max, and ND_BOX_T::min.

Referenced by compute_gserialized_stats_mode(), estimate_join_selectivity(), and estimate_selectivity().

Here is the caller graph for this function: