public Distance SubtractDistance(Distance that)
 {
     return Distance.Meters(this.GetDistanceInMeters() - that.GetDistanceInMeters());
 }
Exemple #2
0
 public Distance SubtractDistance(Distance that)
 {
     return(Distance.Meters(this.GetDistanceInMeters() - that.GetDistanceInMeters()));
 }
 public Distance AddDistance(Distance that)
 {
     return Distance.Meters(this.GetDistanceInMeters() + that.GetDistanceInMeters());
 }
Exemple #4
0
 public Distance AddDistance(Distance that)
 {
     return(Distance.Meters(this.GetDistanceInMeters() + that.GetDistanceInMeters()));
 }