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

◆ lwcircstring_free()

void lwcircstring_free ( LWCIRCSTRING curve)
extern

Definition at line 96 of file lwcircstring.c.

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

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

Referenced by lwgeom_free(), and test_ptarrayarc_contains_point().

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