PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lw_dist2d_poly_curvepoly()

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

Definition at line 922 of file measures.c.

923 {
924  LWCURVEPOLY *curvepoly1 = lwcurvepoly_construct_from_lwpoly(poly1);
925  int rv = lw_dist2d_curvepoly_curvepoly(curvepoly1, curvepoly2, dl);
926  lwgeom_free((LWGEOM*)curvepoly1);
927  return rv;
928 }
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
LWCURVEPOLY * lwcurvepoly_construct_from_lwpoly(LWPOLY *lwpoly)
Construct an equivalent curve polygon from a polygon.
Definition: lwcurvepoly.c:53
int lw_dist2d_curvepoly_curvepoly(LWCURVEPOLY *poly1, LWCURVEPOLY *poly2, DISTPTS *dl)
Definition: measures.c:974

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: