PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwpoly_construct_empty()

LWPOLY* lwpoly_construct_empty ( int  srid,
char  hasz,
char  hasm 
)

Definition at line 161 of file lwpoly.c.

162 {
163  LWPOLY *result = lwalloc(sizeof(LWPOLY));
164  result->type = POLYGONTYPE;
165  result->flags = gflags(hasz,hasm,0);
166  result->srid = srid;
167  result->nrings = 0;
168  result->maxrings = 1; /* Allocate room for ring, just in case. */
169  result->rings = lwalloc(result->maxrings * sizeof(POINTARRAY*));
170  result->bbox = NULL;
171  return result;
172 }
uint8_t gflags(int hasz, int hasm, int geodetic)
Construct a new flags char.
Definition: g_util.c:145
#define POLYGONTYPE
Definition: liblwgeom.h:87
void * lwalloc(size_t size)
Definition: lwutil.c:229
POINTARRAY ** rings
Definition: liblwgeom.h:460
uint8_t type
Definition: liblwgeom.h:454
uint32_t maxrings
Definition: liblwgeom.h:459
uint32_t nrings
Definition: liblwgeom.h:458
uint8_t flags
Definition: liblwgeom.h:455
GBOX * bbox
Definition: liblwgeom.h:456
int32_t srid
Definition: liblwgeom.h:457

References LWPOLY::bbox, LWPOLY::flags, gflags(), lwalloc(), LWPOLY::maxrings, LWPOLY::nrings, POLYGONTYPE, LWPOLY::rings, LWPOLY::srid, and LWPOLY::type.

Referenced by _lwt_FaceByEdges(), buffer(), GeneratePolygonGeometry(), geography_centroid_from_mpoly(), GEOS2LWGEOM(), lwgeom_buildarea(), lwgeom_construct_empty(), lwgeom_filter_m(), lwgeom_segmentize_sphere(), lwpoly_chaikin(), lwpoly_construct_circle(), lwpoly_construct_rectangle(), lwpoly_filterm(), lwpoly_force_dims(), lwpoly_from_twkb_state(), lwpoly_from_wkb_state(), lwpoly_set_effective_area(), lwt_GetFaceGeometry(), parse_geojson_multipolygon(), parse_geojson_polygon(), parse_gml_polygon(), SFCGAL2LWGEOM(), wkt_parser_polygon_finalize(), and wkt_parser_polygon_new().

Here is the call graph for this function:
Here is the caller graph for this function: