PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_as_lwcircstring()

LWCIRCSTRING* lwgeom_as_lwcircstring ( const LWGEOM lwgeom)

Definition at line 179 of file lwgeom.c.

180 {
181  if ( lwgeom == NULL ) return NULL;
182  if ( lwgeom->type == CIRCSTRINGTYPE )
183  return (LWCIRCSTRING *)lwgeom;
184  else return NULL;
185 }
#define CIRCSTRINGTYPE
Definition: liblwgeom.h:92
uint8_t type
Definition: liblwgeom.h:399

References CIRCSTRINGTYPE, and LWGEOM::type.

Referenced by extract_pointarrays_from_lwgeom(), lwcompound_contains_point(), LWGEOM_dumppoints(), lwgeom_swap_ordinates(), and wkt_parser_curvepolygon_add_ring().

Here is the caller graph for this function: