PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ ST_DelaunayTriangles()

Datum ST_DelaunayTriangles ( PG_FUNCTION_ARGS  )

Definition at line 3160 of file postgis/lwgeom_geos.c.

3161 {
3163  GSERIALIZED *geom;
3164  LWGEOM *lwgeom_in, *lwgeom_out;
3165  double tolerance = 0.0;
3166  int flags = 0;
3167 
3168  geom = PG_GETARG_GSERIALIZED_P(0);
3169  tolerance = PG_GETARG_FLOAT8(1);
3170  flags = PG_GETARG_INT32(2);
3171 
3172  lwgeom_in = lwgeom_from_gserialized(geom);
3173  lwgeom_out = lwgeom_delaunay_triangulation(lwgeom_in, tolerance, flags);
3174  lwgeom_free(lwgeom_in) ;
3175 
3176  if ( ! lwgeom_out )
3177  {
3178  PG_FREE_IF_COPY(geom, 0);
3179  PG_RETURN_NULL();
3180  }
3181 
3182  result = geometry_serialize(lwgeom_out) ;
3183  lwgeom_free(lwgeom_out) ;
3184 
3185  PG_FREE_IF_COPY(geom, 0);
3186  PG_RETURN_POINTER(result);
3187 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:267
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
LWGEOM * lwgeom_delaunay_triangulation(const LWGEOM *geom, double tolerance, int32_t edgeOnly)
Take vertices of a geometry and build a delaunay triangulation on them.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1155

References lwgeom_delaunay_triangulation(), lwgeom_free(), lwgeom_from_gserialized(), and result.

Here is the call graph for this function: