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

◆ lwline_offsetcurve()

static LWGEOM * lwline_offsetcurve ( const LWLINE lwline,
double  size,
int  quadsegs,
int  joinStyle,
double  mitreLimit 
)
static

Definition at line 1366 of file liblwgeom/lwgeom_geos.c.

1367{
1368 LWGEOM* result;
1369 LWGEOM* geom = lwline_as_lwgeom(lwline);
1370 int32_t srid = RESULT_SRID(geom);
1371 uint8_t is3d = FLAGS_GET_Z(geom->flags);
1372 GEOSGeometry *g1, *g3;
1373
1374 if (srid == SRID_INVALID) return NULL;
1375
1376 initGEOS(lwnotice, lwgeom_geos_error);
1377
1378 if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
1379
1380 g3 = GEOSOffsetCurve(g1, size, quadsegs, joinStyle, mitreLimit);
1381
1382 if (!g3)
1383 {
1384 GEOS_FREE(g1);
1385 return NULL;
1386 }
1387
1388 GEOSSetSRID(g3, srid);
1389
1390 if (!(result = GEOS2LWGEOM(g3, is3d)))
1391 GEOS_FREE_AND_FAIL(g1, g3);
1392
1393 GEOS_FREE(g1, g3);
1394 return result;
1395}
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
#define GEOS_FREE_AND_FAIL(...)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, uint8_t want3d)
void lwgeom_geos_error(const char *fmt,...)
#define SRID_INVALID
Definition liblwgeom.h:233
#define FLAGS_GET_Z(flags)
Definition liblwgeom.h:179
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition lwgeom.c:321
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition lwutil.c:177
lwflags_t flags
Definition liblwgeom.h:447

References AUTOFIX, LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), GEOS_FAIL, GEOS_FREE, GEOS_FREE_AND_FAIL, LWGEOM2GEOS(), lwgeom_geos_error(), lwline_as_lwgeom(), lwnotice(), RESULT_SRID, and SRID_INVALID.

Referenced by lwgeom_offsetcurve().

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