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

◆ ptarray_remove_repeated_points_minpoints()

static POINTARRAY * ptarray_remove_repeated_points_minpoints ( const POINTARRAY in,
double  tolerance,
int  minpoints 
)
static

Definition at line 1647 of file ptarray.c.

1648{
1649 POINTARRAY *out = ptarray_clone_deep(in);
1650 ptarray_remove_repeated_points_in_place(out, tolerance, minpoints);
1651 return out;
1652}
POINTARRAY * ptarray_clone_deep(const POINTARRAY *in)
Deep clone a pointarray (also clones serialized pointlist)
Definition ptarray.c:643
void ptarray_remove_repeated_points_in_place(POINTARRAY *pa, double tolerance, uint32_t min_points)
Definition ptarray.c:1662

References ptarray_clone_deep(), and ptarray_remove_repeated_points_in_place().

Referenced by ptarray_remove_repeated_points().

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