从圆心找出一个点的角度 [英] Find angle of a point from center of circle

查看:136
本文介绍了从圆心找出一个点的角度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有720,720的图片,看起来像这样。

我发现很多计算结果假设原点是0,0(左上角),所以我得到的结果不正确。
我假设0始终是顶部,而不是旋转。

解决方案

可能会更清晰: (Math.atan2(fromLeft - 360.0,360.0 - fromTop))+ 360.0)%360.0
/ code>

添加一个360度转弯并应用模运算符给出正角,atan2不会。


If I have an image 720, 720 that looks like this..

How do I work out the angle of the touched x,y given that the center x and y are 360, 360 A lot of calculations I see for this assume the origin is 0,0 (which is top left) so I get incorrect results. I am assuming 0 is always to the top and not rotated.

解决方案

May be clearer this way:

(Math.toDegrees( Math.atan2(fromLeft - 360.0, 360.0 - fromTop) ) + 360.0) % 360.0

Adding a 360 degree turn and applying the modulo operator gives you the positive angle, which atan2 does not.

这篇关于从圆心找出一个点的角度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆