PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwcircstring_free()

void lwcircstring_free ( LWCIRCSTRING curve)
extern

Definition at line 97 of file lwcircstring.c.

98{
99 if ( ! curve ) return;
100
101 if ( curve->bbox )
102 lwfree(curve->bbox);
103 if ( curve->points )
104 ptarray_free(curve->points);
105 lwfree(curve);
106}
void lwfree(void *mem)
Definition lwutil.c:242
void ptarray_free(POINTARRAY *pa)
Definition ptarray.c:327
POINTARRAY * points
Definition liblwgeom.h:493
GBOX * bbox
Definition liblwgeom.h:492

References LWCIRCSTRING::bbox, lwfree(), LWCIRCSTRING::points, and ptarray_free().

Referenced by lwgeom_free().

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