PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwgeom_triangulate_polygon()

LWGEOM* lwgeom_triangulate_polygon ( const LWGEOM geom)

Take vertices of a polygon and build a constrained triangulation that respects the boundary of the polygon.

Parameters
geomthe input geometry

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

2212 {
2213  LWGEOM* result;
2214  int32_t srid = RESULT_SRID(geom);
2215  uint8_t is3d = FLAGS_GET_Z(geom->flags);
2216  GEOSGeometry *g1, *g3;
2217 
2218  if (srid == SRID_INVALID) return NULL;
2219 
2220  initGEOS(lwnotice, lwgeom_geos_error);
2221 
2222  if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
2223 
2224  /* if output != 1 we want polys */
2225  g3 = GEOSConstrainedDelaunayTriangulation(g1);
2226 
2227  if (!g3) GEOS_FREE_AND_FAIL(g1);
2228  GEOSSetSRID(g3, srid);
2229 
2230  if (!(result = GEOS2LWGEOM(g3, is3d)))
2231  GEOS_FREE_AND_FAIL(g1, g3);
2232 
2233  GEOS_FREE(g1, g3);
2234  return result;
2235 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:262
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
#define GEOS_FREE_AND_FAIL(...)
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, uint8_t want3d)
void lwgeom_geos_error(const char *fmt,...)
#define SRID_INVALID
Definition: liblwgeom.h:219
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:165
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
lwflags_t flags
Definition: liblwgeom.h:461

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

Referenced by ST_TriangulatePolygon().

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