PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ ST_DelaunayTriangles()

Datum ST_DelaunayTriangles ( PG_FUNCTION_ARGS  )

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

3162 {
3164  GSERIALIZED *geom;
3165  LWGEOM *lwgeom_in, *lwgeom_out;
3166  double tolerance = 0.0;
3167  int flags = 0;
3168 
3169  geom = PG_GETARG_GSERIALIZED_P(0);
3170  tolerance = PG_GETARG_FLOAT8(1);
3171  flags = PG_GETARG_INT32(2);
3172 
3173  lwgeom_in = lwgeom_from_gserialized(geom);
3174  lwgeom_out = lwgeom_delaunay_triangulation(lwgeom_in, tolerance, flags);
3175  lwgeom_free(lwgeom_in) ;
3176 
3177  if ( ! lwgeom_out )
3178  {
3179  PG_FREE_IF_COPY(geom, 0);
3180  PG_RETURN_NULL();
3181  }
3182 
3183  result = geometry_serialize(lwgeom_out) ;
3184  lwgeom_free(lwgeom_out) ;
3185 
3186  PG_FREE_IF_COPY(geom, 0);
3187  PG_RETURN_POINTER(result);
3188 }
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: