PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lw_dist3d_ptarray_ptarray()

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

Finds all combinations of segments between two pointarrays.

Definition at line 1088 of file measures3d.c.

1089{
1090 uint32_t t, u;
1091 POINT3DZ start, end;
1092 POINT3DZ start2, end2;
1093 int twist = dl->twisted;
1094 LWDEBUGF(2, "lw_dist3d_ptarray_ptarray called (points: %d-%d)", l1->npoints, l2->npoints);
1095
1096 if (dl->mode == DIST_MAX) /*If we are searching for maxdistance we go straight to point-point calculation since
1097 the maxdistance have to be between two vertexes*/
1098 {
1099 for (t = 0; t < l1->npoints; t++) /*for each segment in L1 */
1100 {
1101 getPoint3dz_p(l1, t, &start);
1102 for (u = 0; u < l2->npoints; u++) /*for each segment in L2 */
1103 {
1104 getPoint3dz_p(l2, u, &start2);
1105 lw_dist3d_pt_pt(&start, &start2, dl);
1106 }
1107 }
1108 }
1109 else
1110 {
1111 getPoint3dz_p(l1, 0, &start);
1112 for (t = 1; t < l1->npoints; t++) /*for each segment in L1 */
1113 {
1114 getPoint3dz_p(l1, t, &end);
1115 getPoint3dz_p(l2, 0, &start2);
1116 for (u = 1; u < l2->npoints; u++) /*for each segment in L2 */
1117 {
1118 getPoint3dz_p(l2, u, &end2);
1119 dl->twisted = twist;
1120 lw_dist3d_seg_seg(&start, &end, &start2, &end2, dl);
1121 LWDEBUGF(
1122 4, "mindist_ptarray_ptarray; seg %i * seg %i, dist = %g\n", t, u, dl->distance);
1123 LWDEBUGF(3, " seg%d-seg%d dist: %f, mindist: %f", t, u, dl->distance, dl->tolerance);
1124 if (dl->distance <= dl->tolerance && dl->mode == DIST_MIN)
1125 return LW_TRUE; /*just a check if the answer is already given*/
1126 start2 = end2;
1127 }
1128 start = end;
1129 }
1130 }
1131 return LW_TRUE;
1132}
int getPoint3dz_p(const POINTARRAY *pa, uint32_t n, POINT3DZ *point)
Definition lwgeom_api.c:215
#define LW_TRUE
Return types for functions with status returns.
Definition liblwgeom.h:107
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:88
int lw_dist3d_seg_seg(POINT3DZ *s1p1, POINT3DZ *s1p2, POINT3DZ *s2p1, POINT3DZ *s2p2, DISTPTS3D *dl)
Finds the two closest points on two linesegments.
int lw_dist3d_pt_pt(POINT3DZ *thep1, POINT3DZ *thep2, DISTPTS3D *dl)
Compares incoming points and stores the points closest to each other or most far away from each other...
#define DIST_MIN
Definition measures.h:44
#define DIST_MAX
Definition measures.h:43
int twisted
Definition measures3d.h:45
double distance
Definition measures3d.h:40
double tolerance
Definition measures3d.h:47
uint32_t npoints
Definition liblwgeom.h:413

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_line_tri(), lw_dist3d_poly_poly(), lw_dist3d_poly_tri(), lw_dist3d_ptarray_poly(), lw_dist3d_ptarray_tri(), and lw_dist3d_tri_tri().

Here is the call graph for this function:
Here is the caller graph for this function: