PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lw_dist3d_point_point()

int lw_dist3d_point_point ( LWPOINT point1,
LWPOINT point2,
DISTPTS3D dl 
)

point to point calculation

Definition at line 702 of file measures3d.c.

703 {
704  POINT3DZ p1;
705  POINT3DZ p2;
706  LWDEBUG(2, "lw_dist3d_point_point is called");
707 
708  getPoint3dz_p(point1->point, 0, &p1);
709  getPoint3dz_p(point2->point, 0, &p2);
710 
711  return lw_dist3d_pt_pt(&p1, &p2, dl);
712 }
int getPoint3dz_p(const POINTARRAY *pa, uint32_t n, POINT3DZ *point)
Definition: lwgeom_api.c:215
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
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...
Definition: measures3d.c:1045
POINTARRAY * point
Definition: liblwgeom.h:471

References getPoint3dz_p(), lw_dist3d_pt_pt(), LWDEBUG, and LWPOINT::point.

Referenced by lw_dist3d_distribute_bruteforce().

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