Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Even Rouault <[email protected]>
  • Loading branch information
dbaston and rouault authored Aug 31, 2024
1 parent 1255d08 commit a70cd5a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions capi/geos_c.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -3785,7 +3785,7 @@ static const unsigned GEOS_CLUSTER_NONE = 4294967295;
* @param eps distance parameter for clustering
* @param minPoints density parameter for clustering
* @param numClusters the number of clusters formed
* @return an array of cluster identifiers
* @return an array of cluster identifiers to free with GEOSFree()
*/
extern unsigned GEOS_DLL* GEOSClusterDBSCAN(const GEOSGeometry* g, double eps, unsigned minPoints,
unsigned* numClusters);
Expand All @@ -3798,7 +3798,7 @@ extern unsigned GEOS_DLL* GEOSClusterDBSCAN(const GEOSGeometry* g, double eps, u
* @param g a collection of geometries to be clustered
* @param d minimum distance between geometries in the same cluster
* @param numClusters the number of clusters formed
* @return an array of cluster identifiers
* @return an array of cluster identifiers to free with GEOSFree()
*/
extern unsigned GEOS_DLL* GEOSClusterGeometryDistance(const GEOSGeometry* g, double d, unsigned* numClusters);

Expand All @@ -3809,7 +3809,7 @@ extern unsigned GEOS_DLL* GEOSClusterGeometryDistance(const GEOSGeometry* g, dou
*
* @param g a collection of geometries to be clustered
* @param numClusters the number of clusters formed
* @return an array of cluster identifiers
* @return an array of cluster identifiers to free with GEOSFree()
*/
extern unsigned GEOS_DLL* GEOSClusterGeometryIntersects(const GEOSGeometry* g, unsigned* numClusters);

Expand All @@ -3821,7 +3821,7 @@ extern unsigned GEOS_DLL* GEOSClusterGeometryIntersects(const GEOSGeometry* g, u
* @param g a collection of geometries to be clustered
* @param d minimum envelope distance between geometries in the same cluster
* @param numClusters the number of clusters formed
* @return an array of cluster identifiers
* @return an array of cluster identifiers to free with GEOSFree()
*/
extern unsigned GEOS_DLL* GEOSClusterEnvelopeDistance(const GEOSGeometry* g, double d, unsigned* numClusters);

Expand All @@ -3832,7 +3832,7 @@ extern unsigned GEOS_DLL* GEOSClusterEnvelopeDistance(const GEOSGeometry* g, dou
*
* @param g
* @param numClusters the number of clusters formed
* @return an array of cluster identifiers
* @return an array of cluster identifiers to free with GEOSFree()
*/
extern unsigned GEOS_DLL* GEOSClusterEnvelopeIntersects(const GEOSGeometry* g, unsigned* numClusters);
///@}
Expand Down

0 comments on commit a70cd5a

Please sign in to comment.