public static double Azimuth(this GeoPoint a, GeoPoint b) { return(GeoMath.Azimuth(a.Latitude, a.Longitude, b.Latitude, b.Longitude)); }
public double AngleBetween(GeoPoint other) { return(GeoMath.Azimuth(this, other)); }