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

◆ nd_box_contains()

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

Return true if ND_BOX a contains b, false otherwise.

Definition at line 625 of file gserialized_estimate.c.

626{
627 int d;
628 for ( d = 0; d < ndims; d++ )
629 {
630 if ( ! ((a->min[d] < b->min[d]) && (a->max[d] > b->max[d])) )
631 return false;
632 }
633 return true;
634}
float4 max[ND_DIMS]
float4 min[ND_DIMS]

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

Referenced by estimate_selectivity().

Here is the caller graph for this function: