PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lw_dist3d_line_poly()

int lw_dist3d_line_poly ( LWLINE line,
LWPOLY poly,
DISTPTS3D dl 
)

line to polygon calculation

Definition at line 668 of file measures3d.c.

References define_plane(), DIST_MAX, lw_dist3d_ptarray_poly(), lw_dist3d_ptarray_ptarray(), LWDEBUG, DISTPTS3D::mode, LWLINE::points, and LWPOLY::rings.

Referenced by lw_dist3d_distribute_bruteforce().

669 {
670  PLANE3D plane;
671  LWDEBUG(2, "lw_dist3d_line_poly is called");
672 
673  if (dl->mode == DIST_MAX)
674  {
675  return lw_dist3d_ptarray_ptarray(line->points, poly->rings[0], dl);
676  }
677 
678  if(!define_plane(poly->rings[0], &plane))
679  {
680  /* Polygon does not define a plane: Return distance line to line */
681  return lw_dist3d_ptarray_ptarray(line->points, poly->rings[0], dl);
682  }
683 
684  return lw_dist3d_ptarray_poly(line->points, poly,&plane, dl);
685 }
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
POINTARRAY ** rings
Definition: liblwgeom.h:457
int mode
Definition: measures3d.h:44
int define_plane(POINTARRAY *pa, PLANE3D *pl)
Definition: measures3d.c:1173
#define DIST_MAX
Definition: measures.h:43
int lw_dist3d_ptarray_ptarray(POINTARRAY *l1, POINTARRAY *l2, DISTPTS3D *dl)
Finds all combinationes of segments between two pointarrays.
Definition: measures3d.c:867
int lw_dist3d_ptarray_poly(POINTARRAY *pa, LWPOLY *poly, PLANE3D *plane, DISTPTS3D *dl)
Computes pointarray to polygon distance.
Definition: measures3d.c:1077
POINTARRAY * points
Definition: liblwgeom.h:422
Here is the call graph for this function:
Here is the caller graph for this function: