PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lw_dist3d_ptarray_ptarray()

int lw_dist3d_ptarray_ptarray ( POINTARRAY l1,
POINTARRAY l2,
DISTPTS3D dl 
)

Finds all combinationes of segments between two pointarrays.

Definition at line 867 of file measures3d.c.

References DIST_MAX, DIST_MIN, DISTPTS3D::distance, getPoint3dz_p(), lw_dist3d_pt_pt(), lw_dist3d_seg_seg(), LW_TRUE, LWDEBUGF, DISTPTS3D::mode, POINTARRAY::npoints, DISTPTS3D::tolerance, and DISTPTS3D::twisted.

Referenced by lw_dist3d_line_line(), lw_dist3d_line_poly(), lw_dist3d_poly_poly(), and lw_dist3d_ptarray_poly().

868 {
869  int t,u;
870  POINT3DZ start, end;
871  POINT3DZ start2, end2;
872  int twist = dl->twisted;
873  LWDEBUGF(2, "lw_dist3d_ptarray_ptarray called (points: %d-%d)",l1->npoints, l2->npoints);
874 
875 
876 
877  if (dl->mode == DIST_MAX)/*If we are searching for maxdistance we go straight to point-point calculation since the maxdistance have to be between two vertexes*/
878  {
879  for (t=0; t<l1->npoints; t++) /*for each segment in L1 */
880  {
881  getPoint3dz_p(l1, t, &start);
882  for (u=0; u<l2->npoints; u++) /*for each segment in L2 */
883  {
884  getPoint3dz_p(l2, u, &start2);
885  lw_dist3d_pt_pt(&start,&start2,dl);
886  LWDEBUGF(4, "maxdist_ptarray_ptarray; seg %i * seg %i, dist = %g\n",t,u,dl->distance);
887  LWDEBUGF(3, " seg%d-seg%d dist: %f, mindist: %f",
888  t, u, dl->distance, dl->tolerance);
889  }
890  }
891  }
892  else
893  {
894  getPoint3dz_p(l1, 0, &start);
895  for (t=1; t<l1->npoints; t++) /*for each segment in L1 */
896  {
897  getPoint3dz_p(l1, t, &end);
898  getPoint3dz_p(l2, 0, &start2);
899  for (u=1; u<l2->npoints; u++) /*for each segment in L2 */
900  {
901  getPoint3dz_p(l2, u, &end2);
902  dl->twisted=twist;
903  lw_dist3d_seg_seg(&start, &end, &start2, &end2,dl);
904  LWDEBUGF(4, "mindist_ptarray_ptarray; seg %i * seg %i, dist = %g\n",t,u,dl->distance);
905  LWDEBUGF(3, " seg%d-seg%d dist: %f, mindist: %f",
906  t, u, dl->distance, dl->tolerance);
907  if (dl->distance<=dl->tolerance && dl->mode == DIST_MIN) return LW_TRUE; /*just a check if the answer is already given*/
908  start2 = end2;
909  }
910  start = end;
911  }
912  }
913  return LW_TRUE;
914 }
double distance
Definition: measures3d.h:41
int npoints
Definition: liblwgeom.h:371
int lw_dist3d_seg_seg(POINT3DZ *s1p1, POINT3DZ *s1p2, POINT3DZ *s2p1, POINT3DZ *s2p2, DISTPTS3D *dl)
Finds the two closest points on two linesegments.
Definition: measures3d.c:921
#define DIST_MIN
Definition: measures.h:44
int getPoint3dz_p(const POINTARRAY *pa, int n, POINT3DZ *point)
Definition: lwgeom_api.c:214
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
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 twisted
Definition: measures3d.h:45
int mode
Definition: measures3d.h:44
double tolerance
Definition: measures3d.h:46
#define DIST_MAX
Definition: measures.h:43
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
Here is the call graph for this function:
Here is the caller graph for this function: