C# 计算角度

public static double GetAngle(LatLngPoint v1, LatLngPoint v2)
 {
           
            double dy = v2.longitude - v1.longitude;
            double dx = v2.latitude - v1.latitude;
            
            double angle = (double)Math.Atan2(dy, dx) * 180.0F / (double)Math.PI;

            angle += 180;
            
            return angle;
 }

你可能感兴趣的:(C# 计算角度)