PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ ST_DelaunayTriangles()

Datum ST_DelaunayTriangles ( PG_FUNCTION_ARGS  )

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

3186 {
3188  GSERIALIZED *geom;
3189  LWGEOM *lwgeom_in, *lwgeom_out;
3190  double tolerance = 0.0;
3191  int flags = 0;
3192 
3193  geom = PG_GETARG_GSERIALIZED_P(0);
3194  tolerance = PG_GETARG_FLOAT8(1);
3195  flags = PG_GETARG_INT32(2);
3196 
3197  lwgeom_in = lwgeom_from_gserialized(geom);
3198  lwgeom_out = lwgeom_delaunay_triangulation(lwgeom_in, tolerance, flags);
3199  lwgeom_free(lwgeom_in) ;
3200 
3201  if ( ! lwgeom_out )
3202  {
3203  PG_FREE_IF_COPY(geom, 0);
3204  PG_RETURN_NULL();
3205  }
3206 
3207  result = geometry_serialize(lwgeom_out) ;
3208  lwgeom_free(lwgeom_out) ;
3209 
3210  PG_FREE_IF_COPY(geom, 0);
3211  PG_RETURN_POINTER(result);
3212 }
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:1138

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

Here is the call graph for this function: