PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lw_dist3d_pt_seg()

int lw_dist3d_pt_seg ( POINT3DZ p,
POINT3DZ A,
POINT3DZ B,
DISTPTS3D dl 
)

If searching for min distance, this one finds the closest point on segment A-B from p.

if searching for max distance it just sends p-A and p-B to pt-pt calculation

Definition at line 770 of file measures3d.c.

References DIST_MAX, lw_dist3d_pt_pt(), DISTPTS3D::mode, r, POINT3DZ::x, POINT3DZ::y, and POINT3DZ::z.

Referenced by lw_dist3d_pt_ptarray(), and lw_dist3d_seg_seg().

771 {
772  POINT3DZ c;
773  double r;
774  /*if start==end, then use pt distance */
775  if ( ( A->x == B->x) && (A->y == B->y) && (A->z == B->z) )
776  {
777  return lw_dist3d_pt_pt(p,A,dl);
778  }
779 
780 
781  r = ( (p->x-A->x) * (B->x-A->x) + (p->y-A->y) * (B->y-A->y) + ( p->z-A->z) * (B->z-A->z) )/( (B->x-A->x)*(B->x-A->x) +(B->y-A->y)*(B->y-A->y)+(B->z-A->z)*(B->z-A->z) );
782 
783  /*This is for finding the 3Dmaxdistance.
784  the maxdistance have to be between two vertexes,
785  compared to mindistance which can be between
786  tvo vertexes vertex.*/
787  if (dl->mode == DIST_MAX)
788  {
789  if (r>=0.5)
790  {
791  return lw_dist3d_pt_pt(p,A,dl);
792  }
793  if (r<0.5)
794  {
795  return lw_dist3d_pt_pt(p,B,dl);
796  }
797  }
798 
799  if (r<0) /*If the first vertex A is closest to the point p*/
800  {
801  return lw_dist3d_pt_pt(p,A,dl);
802  }
803  if (r>1) /*If the second vertex B is closest to the point p*/
804  {
805  return lw_dist3d_pt_pt(p,B,dl);
806  }
807 
808  /*else if the point p is closer to some point between a and b
809  then we find that point and send it to lw_dist3d_pt_pt*/
810  c.x=A->x + r * (B->x-A->x);
811  c.y=A->y + r * (B->y-A->y);
812  c.z=A->z + r * (B->z-A->z);
813 
814  return lw_dist3d_pt_pt(p,&c,dl);
815 }
double z
Definition: liblwgeom.h:334
double y
Definition: liblwgeom.h:334
double x
Definition: liblwgeom.h:334
char * r
Definition: cu_in_wkt.c:24
int lw_dist3d_pt_pt(POINT3DZ *thep1, POINT3DZ *thep2, DISTPTS3D *dl)
Compares incomming points and stores the points closest to each other or most far away from each othe...
Definition: measures3d.c:835
int mode
Definition: measures3d.h:44
#define DIST_MAX
Definition: measures.h:43
Here is the call graph for this function:
Here is the caller graph for this function: