PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ box2df_distance_leaf_centroid()

static double box2df_distance_leaf_centroid ( const BOX2DF *  a,
const BOX2DF *  b 
)
static

Calculate the centroid->centroid distance between the boxes.

Definition at line 388 of file gserialized_gist_2d.c.

389 {
390  /* The centroid->centroid distance between the boxes */
391  double a_x = (a->xmax + a->xmin) / 2.0;
392  double a_y = (a->ymax + a->ymin) / 2.0;
393  double b_x = (b->xmax + b->xmin) / 2.0;
394  double b_y = (b->ymax + b->ymin) / 2.0;
395 
396  /* This "distance" is only used for comparisons, */
397  return sqrt((a_x - b_x) * (a_x - b_x) + (a_y - b_y) * (a_y - b_y));
398 }

Referenced by gserialized_distance_centroid_2d().

Here is the caller graph for this function: