PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ sfcgal_difference3D()

Datum sfcgal_difference3D ( PG_FUNCTION_ARGS  )

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

559 {
560  GSERIALIZED *input0, *input1, *output;
561  sfcgal_geometry_t *geom0, *geom1;
562  sfcgal_geometry_t *result;
563  srid_t srid;
564 
566 
567  input0 = (GSERIALIZED*) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
568  srid = gserialized_get_srid(input0);
569  input1 = (GSERIALIZED*) PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
570  geom0 = POSTGIS2SFCGALGeometry(input0);
571  PG_FREE_IF_COPY(input0, 0);
572  geom1 = POSTGIS2SFCGALGeometry(input1);
573  PG_FREE_IF_COPY(input1, 1);
574 
575  result = sfcgal_geometry_difference_3d(geom0, geom1);
576  sfcgal_geometry_delete(geom0);
577  sfcgal_geometry_delete(geom1);
578 
579  output = SFCGALGeometry2POSTGIS(result, 0, srid);
580  sfcgal_geometry_delete(result);
581 
582  PG_RETURN_POINTER(output);
583 }
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: