PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ ST_DelaunayTriangles()

Datum ST_DelaunayTriangles ( PG_FUNCTION_ARGS  )

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

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