Exemplo n.º 1
0
 public Distance SubtractDistance(Distance that)
 {
     return Distance.Meters(this.GetDistanceInMeters() - that.GetDistanceInMeters());
 }
Exemplo n.º 2
0
 public Distance AddDistance(Distance that)
 {
     return Distance.Meters(this.GetDistanceInMeters() + that.GetDistanceInMeters());
 }
Exemplo n.º 3
0
 public Projection(GeoPoint from, Distance distance, Bearing heading)
 {
     this.from     = from;
     this.distance = distance;
     this.bearing  = heading;
 }
Exemplo n.º 4
0
 public virtual GeoPoint Project(Distance distance, Bearing bearing)
 {
     return new Projection(this, distance, bearing).Project();
 }
Exemplo n.º 5
0
 public Projection(GeoPoint from, Distance distance, Bearing heading)
 {
     this.from = from;
     this.distance = distance;
     this.bearing = heading;
 }