PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ lw_dist2d_poly_curvepoly()

int lw_dist2d_poly_curvepoly ( LWPOLY poly1,
LWCURVEPOLY curvepoly2,
DISTPTS dl 
)

Definition at line 1019 of file measures.c.

1020 {
1021  LWCURVEPOLY *curvepoly1 = lwcurvepoly_construct_from_lwpoly(poly1);
1022  int rv = lw_dist2d_curvepoly_curvepoly(curvepoly1, curvepoly2, dl);
1023  lwgeom_free((LWGEOM *)curvepoly1);
1024  return rv;
1025 }
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
LWCURVEPOLY * lwcurvepoly_construct_from_lwpoly(LWPOLY *lwpoly)
Construct an equivalent curve polygon from a polygon.
Definition: lwcurvepoly.c:52
int lw_dist2d_curvepoly_curvepoly(LWCURVEPOLY *poly1, LWCURVEPOLY *poly2, DISTPTS *dl)
Definition: measures.c:1049

References lw_dist2d_curvepoly_curvepoly(), lwcurvepoly_construct_from_lwpoly(), and lwgeom_free().

Referenced by lw_dist2d_distribute_bruteforce().

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