PostGIS  3.4.0dev-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 959 of file measures3d.c.

960 {
961  uint32_t t;
962  POINT3DZ start, end;
963  int twist = dl->twisted;
964  if (!pa)
965  return LW_FALSE;
966 
967  getPoint3dz_p(pa, 0, &start);
968 
969  for (t = 1; t < pa->npoints; t++)
970  {
971  dl->twisted = twist;
972  getPoint3dz_p(pa, t, &end);
973  if (!lw_dist3d_pt_seg(p, &start, &end, dl))
974  return LW_FALSE;
975 
976  if (dl->distance <= dl->tolerance && dl->mode == DIST_MIN)
977  return LW_TRUE; /*just a check if the answer is already given*/
978  start = end;
979  }
980 
981  return LW_TRUE;
982 }
#define LW_FALSE
Definition: liblwgeom.h:94
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:93
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:989
#define DIST_MIN
Definition: measures.h:44
int twisted
Definition: measures3d.h:45
double distance
Definition: measures3d.h:40
int mode
Definition: measures3d.h:43
double tolerance
Definition: measures3d.h:47
uint32_t npoints
Definition: liblwgeom.h:427

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

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

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