PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ sfcgal_difference()

Datum sfcgal_difference ( PG_FUNCTION_ARGS  )

Definition at line 529 of file postgis/lwgeom_sfcgal.c.

530 {
531  GSERIALIZED *input0, *input1, *output;
532  sfcgal_geometry_t *geom0, *geom1;
533  sfcgal_geometry_t *result;
534  srid_t srid;
535 
537 
538  input0 = (GSERIALIZED*) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
539  srid = gserialized_get_srid(input0);
540  input1 = (GSERIALIZED*) PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
541  geom0 = POSTGIS2SFCGALGeometry(input0);
542  PG_FREE_IF_COPY(input0, 0);
543  geom1 = POSTGIS2SFCGALGeometry(input1);
544  PG_FREE_IF_COPY(input1, 1);
545 
546  result = sfcgal_geometry_difference(geom0, geom1);
547  sfcgal_geometry_delete(geom0);
548  sfcgal_geometry_delete(geom1);
549 
550  output = SFCGALGeometry2POSTGIS(result, 0, srid);
551  sfcgal_geometry_delete(result);
552 
553  PG_RETURN_POINTER(output);
554 }
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
Definition: g_serialized.c:100
sfcgal_geometry_t * POSTGIS2SFCGALGeometry(GSERIALIZED *pglwgeom)
void sfcgal_postgis_init(void)
GSERIALIZED * SFCGALGeometry2POSTGIS(const sfcgal_geometry_t *geom, int force3D, int SRID)

References gserialized_get_srid(), POSTGIS2SFCGALGeometry(), sfcgal_postgis_init(), and SFCGALGeometry2POSTGIS().

Here is the call graph for this function: