PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_is_closed_z()

int ptarray_is_closed_z ( const POINTARRAY pa)

Definition at line 723 of file ptarray.c.

References POINTARRAY::flags, FLAGS_GET_Z, ptarray_is_closed_2d(), and ptarray_is_closed_3d().

Referenced by lwtriangle_from_wkb_state(), wkt_parser_polygon_add_ring(), and wkt_parser_triangle_new().

724 {
725  if ( FLAGS_GET_Z(in->flags) )
726  return ptarray_is_closed_3d(in);
727  else
728  return ptarray_is_closed_2d(in);
729 }
int ptarray_is_closed_2d(const POINTARRAY *in)
Definition: ptarray.c:697
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
int ptarray_is_closed_3d(const POINTARRAY *in)
Definition: ptarray.c:710
Here is the call graph for this function:
Here is the caller graph for this function: