确定线的角度
在Silverlight中,有没有办法确定Line对象的角度?如果我有一条坐标为 0,0 - 30,80
的线,有没有办法确定该线运行的角度(以度为单位)?
In Silverlight, is there a way to determine the angle of a Line object? If I have a Line with coordinates of 0,0 - 30,80
, is there a way to determine the angle, in degrees, that the line is running?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 Math.Atan 函数求反正切。您只需找到 y 值(增量)相对于 x 值(增量)的 atan。
答案将以弧度为单位,您需要将其转换为度数 (rads * (180f / Math.PI))。
一个例子是这样的:(
注意:我从未使用过 Silverlight,我只是基于文档,所以这可能是完全错误的......您也可以使用 Math.Atan2(delta y, delta x)也...)
You could try finding the arc tangent using the
Math.Atan
function. You just need to find the atan of the (delta of) y-value over the (delta of) x-value.The answer will be in radians and you will need to convert it to degrees (rads * (180f / Math.PI)).
An example of this would be something like:
(Note: I've never used Silverlight and I'm just basing this off the docs, so this might be completely wrong... you can also use Math.Atan2(delta y, delta x) too...)