namespace Dbscan
{
///
/// Represents a method that calculates the distance between two objects.
///
/// An object representing the first point.
/// An object representing the second point.
/// The distance between points and .
public delegate double DistanceFunction(in IPointData p1, in IPointData p2);
}