namespace Dbscan { /// /// Exposes a that identifies where an object is. /// public interface IPointData { /// /// The location of the current object. /// Point Point { get; } } }