PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lw_dist3d_pt_ptarray()

int lw_dist3d_pt_ptarray ( POINT3DZ p,
POINTARRAY pa,
DISTPTS3D dl 
)

search all the segments of pointarray to see which one is closest to p Returns distance between point and pointarray

Definition at line 740 of file measures3d.c.

References DIST_MIN, DISTPTS3D::distance, getPoint3dz_p(), lw_dist3d_pt_seg(), LW_FALSE, LW_TRUE, LWDEBUG, DISTPTS3D::mode, POINTARRAY::npoints, DISTPTS3D::tolerance, and DISTPTS3D::twisted.

Referenced by lw_dist3d_point_line(), lw_dist3d_point_poly(), and lw_dist3d_pt_poly().

741 {
742  int t;
743  POINT3DZ start, end;
744  int twist = dl->twisted;
745 
746  LWDEBUG(2, "lw_dist3d_pt_ptarray is called");
747 
748  getPoint3dz_p(pa, 0, &start);
749 
750  for (t=1; t<pa->npoints; t++)
751  {
752  dl->twisted=twist;
753  getPoint3dz_p(pa, t, &end);
754  if (!lw_dist3d_pt_seg(p, &start, &end,dl)) return LW_FALSE;
755 
756  if (dl->distance<=dl->tolerance && dl->mode == DIST_MIN) return LW_TRUE; /*just a check if the answer is already given*/
757  start = end;
758  }
759 
760  return LW_TRUE;
761 }
double distance
Definition: measures3d.h:41
int npoints
Definition: liblwgeom.h:371
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define DIST_MIN
Definition: measures.h:44
int getPoint3dz_p(const POINTARRAY *pa, int n, POINT3DZ *point)
Definition: lwgeom_api.c:214
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
int twisted
Definition: measures3d.h:45
int mode
Definition: measures3d.h:44
double tolerance
Definition: measures3d.h:46
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...
Definition: measures3d.c:770
Here is the call graph for this function:
Here is the caller graph for this function: