Skip to content

Releases: viceroypenguin/DBSCAN

Release 3.0.0

12 Jul 17:57
Compare
Choose a tag to compare

What's Changed

  • Allow more advanced search / distance function implementations by @ahorn42 in #3

New Contributors

Breaking Changes

  • DBSCAN namespace and class corrected to Dbscan according to C# Style guidelines
  • ClusterSet<T> and Cluster<T> objects changed list types to IReadOnlyList<> to better reflect intended use of return data
  • Removed ref readonly from IPointData.Point - 16 byte struct should be transferred directly rather than by reference
  • DistanceFunction delegate moved outside of ListSpatialIndex<> class.