IPointData.cs 277 B

1234567891011121314
  1. namespace Dbscan
  2. {
  3. /// <summary>
  4. /// Exposes a <see cref="P:Dbscan.IPointData.Point" /> that identifies where an object is.
  5. /// </summary>
  6. public interface IPointData
  7. {
  8. /// <summary>
  9. /// The location of the current object.
  10. /// </summary>
  11. Point Point { get; }
  12. }
  13. }