PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ lw_dist2d_distribute_fast()

int lw_dist2d_distribute_fast ( LWGEOM lwg1,
LWGEOM lwg2,
DISTPTS dl 
)

Geometries are distributed for the new faster distance-calculations.

Definition at line 550 of file measures.c.

551 {
552  POINTARRAY *pa1, *pa2;
553  int type1 = lwg1->type;
554  int type2 = lwg2->type;
555 
556  LWDEBUGF(2, "lw_dist2d_distribute_fast is called with typ1=%d, type2=%d", lwg1->type, lwg2->type);
557 
558  switch (type1)
559  {
560  case LINETYPE:
561  pa1 = ((LWLINE *)lwg1)->points;
562  break;
563  case POLYGONTYPE:
564  pa1 = ((LWPOLY *)lwg1)->rings[0];
565  break;
566  case TRIANGLETYPE:
567  pa1 = ((LWTRIANGLE *)lwg1)->points;
568  break;
569  default:
570  lwerror("Unsupported geometry1 type: %s", lwtype_name(type1));
571  return LW_FALSE;
572  }
573  switch (type2)
574  {
575  case LINETYPE:
576  pa2 = ((LWLINE *)lwg2)->points;
577  break;
578  case POLYGONTYPE:
579  pa2 = ((LWPOLY *)lwg2)->rings[0];
580  break;
581  case TRIANGLETYPE:
582  pa2 = ((LWTRIANGLE *)lwg2)->points;
583  break;
584  default:
585  lwerror("Unsupported geometry2 type: %s", lwtype_name(type1));
586  return LW_FALSE;
587  }
588  dl->twisted = 1;
589  return lw_dist2d_fast_ptarray_ptarray(pa1, pa2, dl, lwg1->bbox, lwg2->bbox);
590 }
#define LW_FALSE
Definition: liblwgeom.h:108
#define LINETYPE
Definition: liblwgeom.h:117
#define POLYGONTYPE
Definition: liblwgeom.h:118
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:216
#define TRIANGLETYPE
Definition: liblwgeom.h:129
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
int lw_dist2d_fast_ptarray_ptarray(POINTARRAY *l1, POINTARRAY *l2, DISTPTS *dl, GBOX *box1, GBOX *box2)
The new faster calculation comparing pointarray to another pointarray the arrays can come from both p...
Definition: measures.c:1946
int twisted
Definition: measures.h:55
uint8_t type
Definition: liblwgeom.h:476
GBOX * bbox
Definition: liblwgeom.h:472

References LWGEOM::bbox, LINETYPE, lw_dist2d_fast_ptarray_ptarray(), LW_FALSE, LWDEBUGF, lwerror(), lwtype_name(), POLYGONTYPE, TRIANGLETYPE, DISTPTS::twisted, and LWGEOM::type.

Referenced by lw_dist2d_recursive().

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