Qt中的角度转弧度
Posted manual-linux
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt中的角度转弧度相关的知识,希望对你有一定的参考价值。
在Qt中,qAsin(),qAtan2()等三角函数的返回值是弧度而不是角度,因此要将弧度转化为角度。
弧度=角度*Pi/180
以qAtan()函数为例
qreal qAtan(qreal v)
Returns the arctangent of v as an angle in radians. Arctangent is the inverse operation of tangent.
See also qTan(), qAcos(), and qAsin().
其中radians表示弧度
以上是关于Qt中的角度转弧度的主要内容,如果未能解决你的问题,请参考以下文章