Exemplo n.º 1
0
 public static double Azimuth(this GeoPoint a, GeoPoint b)
 {
     return(GeoMath.Azimuth(a.Latitude, a.Longitude, b.Latitude, b.Longitude));
 }
Exemplo n.º 2
0
 public double AngleBetween(GeoPoint other)
 {
     return(GeoMath.Azimuth(this, other));
 }