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

◆ nd_box_init_bounds()

static int nd_box_init_bounds ( ND_BOX a)
static

Prepare an ND_BOX for bounds calculation: set the maxes to the smallest thing possible and the mins to the largest.

Definition at line 483 of file gserialized_estimate.c.

484{
485 int d;
486 for ( d = 0; d < ND_DIMS; d++ )
487 {
488 a->min[d] = FLT_MAX;
489 a->max[d] = -1 * FLT_MAX;
490 }
491 return true;
492}

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

Referenced by compute_gserialized_stats_mode().

Here is the caller graph for this function: