PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ 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 538 of file measures.c.

539{
540 POINTARRAY *pa1, *pa2;
541 int type1 = lwg1->type;
542 int type2 = lwg2->type;
543
544 LWDEBUGF(2, "lw_dist2d_distribute_fast is called with typ1=%d, type2=%d", lwg1->type, lwg2->type);
545
546 switch (type1)
547 {
548 case LINETYPE:
549 pa1 = ((LWLINE *)lwg1)->points;
550 break;
551 case POLYGONTYPE:
552 pa1 = ((LWPOLY *)lwg1)->rings[0];
553 break;
554 case TRIANGLETYPE:
555 pa1 = ((LWTRIANGLE *)lwg1)->points;
556 break;
557 default:
558 lwerror("Unsupported geometry1 type: %s", lwtype_name(type1));
559 return LW_FALSE;
560 }
561 switch (type2)
562 {
563 case LINETYPE:
564 pa2 = ((LWLINE *)lwg2)->points;
565 break;
566 case POLYGONTYPE:
567 pa2 = ((LWPOLY *)lwg2)->rings[0];
568 break;
569 case TRIANGLETYPE:
570 pa2 = ((LWTRIANGLE *)lwg2)->points;
571 break;
572 default:
573 lwerror("Unsupported geometry2 type: %s", lwtype_name(type1));
574 return LW_FALSE;
575 }
576 dl->twisted = 1;
577 return lw_dist2d_fast_ptarray_ptarray(pa1, pa2, dl, lwg1->bbox, lwg2->bbox);
578}
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition lwutil.c:216
#define LW_FALSE
Definition liblwgeom.h:108
#define LINETYPE
Definition liblwgeom.h:117
#define POLYGONTYPE
Definition liblwgeom.h:118
#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:2035
int twisted
Definition measures.h:55
uint8_t type
Definition liblwgeom.h:448
GBOX * bbox
Definition liblwgeom.h:444

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: