PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwcircstring_is_closed()

int lwcircstring_is_closed ( const LWCIRCSTRING curve)

Definition at line 268 of file lwcircstring.c.

References LWCIRCSTRING::flags, FLAGS_GET_Z, LWCIRCSTRING::points, ptarray_is_closed_2d(), and ptarray_is_closed_3d().

Referenced by lwgeom_is_closed(), test_isclosed(), and wkt_parser_curvepolygon_add_ring().

269 {
270  if (FLAGS_GET_Z(curve->flags))
271  return ptarray_is_closed_3d(curve->points);
272 
273  return ptarray_is_closed_2d(curve->points);
274 }
uint8_t flags
Definition: liblwgeom.h:441
int ptarray_is_closed_3d(const POINTARRAY *pa)
Definition: ptarray.c:710
int ptarray_is_closed_2d(const POINTARRAY *pa)
Definition: ptarray.c:697
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
POINTARRAY * points
Definition: liblwgeom.h:444
Here is the call graph for this function:
Here is the caller graph for this function: