PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_split()

static LWGEOM * lwpoly_split ( const LWPOLY lwpoly_in,
const LWGEOM blade_in 
)
static

Definition at line 546 of file lwgeom_geos_split.c.

References LINETYPE, lwerror(), lwpoly_split_by_line(), lwtype_name(), LWGEOM::type, and LWLINE::type.

Referenced by lwgeom_split().

547 {
548  switch (blade_in->type)
549  {
550  case LINETYPE:
551  return lwpoly_split_by_line(lwpoly_in, (LWLINE*)blade_in);
552  default:
553  lwerror("Splitting a Polygon by a %s is unsupported",
554  lwtype_name(blade_in->type));
555  return NULL;
556  }
557  return NULL;
558 }
#define LINETYPE
Definition: liblwgeom.h:86
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:218
uint8_t type
Definition: liblwgeom.h:396
static LWGEOM * lwpoly_split_by_line(const LWPOLY *lwgeom_in, const LWLINE *blade_in)
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Here is the call graph for this function:
Here is the caller graph for this function: