PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ distance2d_sqr_pt_seg()

double distance2d_sqr_pt_seg ( const POINT2D p,
const POINT2D A,
const POINT2D B 
)

Definition at line 2391 of file measures.c.

References distance2d_sqr_pt_pt(), r, s, POINT2D::x, and POINT2D::y.

Referenced by ptarray_dp_findsplit().

2392 {
2393  double r,s;
2394 
2395  if ( ( A->x == B->x) && (A->y == B->y) )
2396  return distance2d_sqr_pt_pt(p,A);
2397 
2398  r = ( (p->x-A->x) * (B->x-A->x) + (p->y-A->y) * (B->y-A->y) )/( (B->x-A->x)*(B->x-A->x) +(B->y-A->y)*(B->y-A->y) );
2399 
2400  if (r<0) return distance2d_sqr_pt_pt(p,A);
2401  if (r>1) return distance2d_sqr_pt_pt(p,B);
2402 
2403 
2404  /*
2405  * (2)
2406  * (Ay-Cy)(Bx-Ax)-(Ax-Cx)(By-Ay)
2407  * s = -----------------------------
2408  * L^2
2409  *
2410  * Then the distance from C to P = |s|*L.
2411  *
2412  */
2413 
2414  s = ( (A->y-p->y)*(B->x-A->x)- (A->x-p->x)*(B->y-A->y) ) /
2415  ( (B->x-A->x)*(B->x-A->x) +(B->y-A->y)*(B->y-A->y) );
2416 
2417  return s * s * ( (B->x-A->x)*(B->x-A->x) + (B->y-A->y)*(B->y-A->y) );
2418 }
double distance2d_sqr_pt_pt(const POINT2D *p1, const POINT2D *p2)
Definition: measures.c:2327
char * r
Definition: cu_in_wkt.c:24
double x
Definition: liblwgeom.h:328
double y
Definition: liblwgeom.h:328
char * s
Definition: cu_in_wkt.c:23
Here is the call graph for this function:
Here is the caller graph for this function: