PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ distance2d_sqr_pt_pt()

double distance2d_sqr_pt_pt ( const POINT2D p1,
const POINT2D p2 
)
inline

Definition at line 2323 of file measures.c.

2324 {
2325  double hside = p2->x - p1->x;
2326  double vside = p2->y - p1->y;
2327 
2328  return hside * hside + vside * vside;
2329 }
double y
Definition: liblwgeom.h:331
double x
Definition: liblwgeom.h:331

References POINT2D::x, and POINT2D::y.

Referenced by distance2d_sqr_pt_seg(), kmeans_init(), lw_dist2d_arc_arc_concentric(), lwgeom_remove_repeated_points_in_place(), ptarray_remove_repeated_points_in_place(), rect_tree_node_sort(), and update_r().

Here is the caller graph for this function: