我有一个平面2D地图的网格,与通常有点不同。左上角为0,0,右下角为1000,1000。我在这张地图上有2个点,一个原点/锚点和一个目的地。
我希望找出从原点到目的地的度数(在javascript中)。我查看了许多答案,但都没有产生正确的结果。
function getAngle(origin_x, origin_y, destination_x, destination_y) {
var newx = destination_x - origin_x;
var newy = destination_y - origin_y;
var theta = Math.atan2(-newy, newx);
if (theta < 0) {
theta += 2 * Math.PI;
}
theta *= 180 / Math.PI;
return theta;
}
这是我到目前为止所做的,但它没有产生正确的角度。
非常感谢你!
答案 0 :(得分:1)