PostGIS  3.0.6dev-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 962 of file measures3d.c.

963 {
964  uint32_t t;
965  POINT3DZ start, end;
966  int twist = dl->twisted;
967  if (!pa)
968  return LW_FALSE;
969 
970  getPoint3dz_p(pa, 0, &start);
971 
972  for (t = 1; t < pa->npoints; t++)
973  {
974  dl->twisted = twist;
975  getPoint3dz_p(pa, t, &end);
976  if (!lw_dist3d_pt_seg(p, &start, &end, dl))
977  return LW_FALSE;
978 
979  if (dl->distance <= dl->tolerance && dl->mode == DIST_MIN)
980  return LW_TRUE; /*just a check if the answer is already given*/
981  start = end;
982  }
983 
984  return LW_TRUE;
985 }
#define LW_FALSE
Definition: liblwgeom.h:108
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
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:992
#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:413

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: