Esempio n. 1
0
 public double GetDistanceBtwnEdges(Cell other)
 {
     return this.GetDistanceBtwnCenters(other) - this.Radius - other.Radius;
 }
Esempio n. 2
0
 public double GetDistanceBtwnCenters(Cell other)
 {
     return GetDistanceToPoint(other.Location);
 }