PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ nd_box_expand()

static int nd_box_expand ( ND_BOX nd_box,
double  expansion_factor 
)
static

Expand an ND_BOX ever so slightly.

Expand parameter is the proportion of total width to add.

Definition at line 649 of file gserialized_estimate.c.

650 {
651  int d;
652  double size;
653  for ( d = 0; d < ND_DIMS; d++ )
654  {
655  size = nd_box->max[d] - nd_box->min[d];
656  /* Avoid expanding boxes that are either too wide or too narrow*/
657  if (size < MIN_DIMENSION_WIDTH || size > MAX_DIMENSION_WIDTH)
658  continue;
659  nd_box->min[d] -= size * expansion_factor / 2;
660  nd_box->max[d] += size * expansion_factor / 2;
661  }
662  return true;
663 }
#define ND_DIMS
The maximum number of dimensions our code can handle.
#define MAX_DIMENSION_WIDTH
Maximum width of a dimension that we'll bother trying to compute statistics on.
float4 max[ND_DIMS]
float4 min[ND_DIMS]

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

Referenced by compute_gserialized_stats_mode().

Here is the caller graph for this function: