PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lw_dist3d_pt_pt()

int lw_dist3d_pt_pt ( POINT3DZ p1,
POINT3DZ p2,
DISTPTS3D dl 
)

Compares incoming points and stores the points closest to each other or most far away from each other depending on dl->mode (max or min)

Definition at line 832 of file measures3d.c.

833 {
834  double dx = thep2->x - thep1->x;
835  double dy = thep2->y - thep1->y;
836  double dz = thep2->z - thep1->z;
837  double dist = sqrt ( dx*dx + dy*dy + dz*dz);
838  LWDEBUGF(2, "lw_dist3d_pt_pt called (with points: p1.x=%f, p1.y=%f,p1.z=%f,p2.x=%f, p2.y=%f,p2.z=%f)",thep1->x,thep1->y,thep1->z,thep2->x,thep2->y,thep2->z );
839 
840  if (((dl->distance - dist)*(dl->mode))>0) /*multiplication with mode to handle mindistance (mode=1) and maxdistance (mode = (-1)*/
841  {
842  dl->distance = dist;
843 
844  if (dl->twisted>0) /*To get the points in right order. twisted is updated between 1 and (-1) every time the order is changed earlier in the chain*/
845  {
846  dl->p1 = *thep1;
847  dl->p2 = *thep2;
848  }
849  else
850  {
851  dl->p1 = *thep2;
852  dl->p2 = *thep1;
853  }
854  }
855  return LW_TRUE;
856 }
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
POINT3DZ p2
Definition: measures3d.h:43
int twisted
Definition: measures3d.h:45
POINT3DZ p1
Definition: measures3d.h:42
double distance
Definition: measures3d.h:41
int mode
Definition: measures3d.h:44

References DISTPTS3D::distance, LW_TRUE, LWDEBUGF, DISTPTS3D::mode, DISTPTS3D::p1, DISTPTS3D::p2, DISTPTS3D::twisted, POINT3DZ::x, POINT3DZ::y, and POINT3DZ::z.

Referenced by lw_dist3d_point_point(), lw_dist3d_pt_poly(), lw_dist3d_pt_seg(), lw_dist3d_ptarray_ptarray(), and lw_dist3d_seg_seg().

Here is the caller graph for this function: