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

1046 {
1047  double dx = thep2->x - thep1->x;
1048  double dy = thep2->y - thep1->y;
1049  double dz = thep2->z - thep1->z;
1050  double dist = sqrt(dx * dx + dy * dy + dz * dz);
1051  LWDEBUGF(2,
1052  "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)",
1053  thep1->x,
1054  thep1->y,
1055  thep1->z,
1056  thep2->x,
1057  thep2->y,
1058  thep2->z);
1059 
1060  if (((dl->distance - dist) * (dl->mode)) >
1061  0) /*multiplication with mode to handle mindistance (mode=1) and maxdistance (mode = (-1)*/
1062  {
1063  dl->distance = dist;
1064 
1065  if (dl->twisted > 0) /*To get the points in right order. twisted is updated between 1 and (-1) every
1066  time the order is changed earlier in the chain*/
1067  {
1068  dl->p1 = *thep1;
1069  dl->p2 = *thep2;
1070  }
1071  else
1072  {
1073  dl->p1 = *thep2;
1074  dl->p2 = *thep1;
1075  }
1076  }
1077  return LW_TRUE;
1078 }
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
POINT3DZ p2
Definition: measures3d.h:42
int twisted
Definition: measures3d.h:45
POINT3DZ p1
Definition: measures3d.h:41
double distance
Definition: measures3d.h:40
int mode
Definition: measures3d.h:43

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_pt_tri(), lw_dist3d_ptarray_ptarray(), and lw_dist3d_seg_seg().

Here is the caller graph for this function: