public double GetDistanceBtwnEdges(Cell other) { return this.GetDistanceBtwnCenters(other) - this.Radius - other.Radius; }
public double GetDistanceBtwnCenters(Cell other) { return GetDistanceToPoint(other.Location); }