PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ sfcgal_intersection()

Datum sfcgal_intersection ( PG_FUNCTION_ARGS  )

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

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

Referenced by sfcgal_approximate_medial_axis().

472 {
473  GSERIALIZED *input0, *input1, *output;
474  sfcgal_geometry_t *geom0, *geom1;
475  sfcgal_geometry_t *result;
476  srid_t srid;
477 
479 
480  input0 = PG_GETARG_GSERIALIZED_P(0);
481  srid = gserialized_get_srid(input0);
482  input1 = PG_GETARG_GSERIALIZED_P(1);
483  geom0 = POSTGIS2SFCGALGeometry(input0);
484  PG_FREE_IF_COPY(input0, 0);
485  geom1 = POSTGIS2SFCGALGeometry(input1);
486  PG_FREE_IF_COPY(input1, 1);
487 
488  result = sfcgal_geometry_intersection(geom0, geom1);
489  sfcgal_geometry_delete(geom0);
490  sfcgal_geometry_delete(geom1);
491 
492  output = SFCGALGeometry2POSTGIS(result, 0, srid);
493  sfcgal_geometry_delete(result);
494 
495  PG_RETURN_POINTER(output);
496 }
sfcgal_geometry_t * POSTGIS2SFCGALGeometry(GSERIALIZED *pglwgeom)
GSERIALIZED * SFCGALGeometry2POSTGIS(const sfcgal_geometry_t *geom, int force3D, int SRID)
void sfcgal_postgis_init(void)
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
Here is the call graph for this function:
Here is the caller graph for this function: