PostGIS  2.5.7dev-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 737 of file measures3d.c.

738 {
739  uint32_t t;
740  POINT3DZ start, end;
741  int twist = dl->twisted;
742 
743  LWDEBUG(2, "lw_dist3d_pt_ptarray is called");
744 
745  getPoint3dz_p(pa, 0, &start);
746 
747  for (t=1; t<pa->npoints; t++)
748  {
749  dl->twisted=twist;
750  getPoint3dz_p(pa, t, &end);
751  if (!lw_dist3d_pt_seg(p, &start, &end,dl)) return LW_FALSE;
752 
753  if (dl->distance<=dl->tolerance && dl->mode == DIST_MIN) return LW_TRUE; /*just a check if the answer is already given*/
754  start = end;
755  }
756 
757  return LW_TRUE;
758 }
#define LW_FALSE
Definition: liblwgeom.h:77
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:76
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
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:767
#define DIST_MIN
Definition: measures.h:44
int twisted
Definition: measures3d.h:45
double distance
Definition: measures3d.h:41
int mode
Definition: measures3d.h:44
double tolerance
Definition: measures3d.h:46
uint32_t npoints
Definition: liblwgeom.h:374
unsigned int uint32_t
Definition: uthash.h:78

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().

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