Ejemplo n.º 1
0
 public virtual GeoPoint Project(Distance distance, Bearing bearing)
 {
     return(new Projection(this, distance, bearing).Project());
 }
Ejemplo n.º 2
0
 public virtual Bearing FinalBearingTo(GeoPoint that)
 {
     return(Bearing.DecimalDegrees((Bearing.Between(that, this).DecimalDegrees() + 180) % 360));
 }
Ejemplo n.º 3
0
 public virtual Bearing BearingTo(GeoPoint that)
 {
     return(Bearing.Between(this, that));
 }
Ejemplo n.º 4
0
 public Projection(GeoPoint from, Distance distance, Bearing heading)
 {
     this.from     = from;
     this.distance = distance;
     this.bearing  = heading;
 }
Ejemplo n.º 5
0
 public virtual GeoPoint Project(Distance distance, Bearing bearing)
 {
     return new Projection(this, distance, bearing).Project();
 }
Ejemplo n.º 6
0
 public Projection(GeoPoint from, Distance distance, Bearing heading)
 {
     this.from = from;
     this.distance = distance;
     this.bearing = heading;
 }