将角度转换为弧度

时间:2010-08-16 10:04:49

标签: c++ math

我的度数角度为-415度,

我已将其转换为弧度

float degreeValue = -415

float radianValue = degreeValue * pi / 180.0; 

这里我得到-0.7(四舍五入)

如何再次转换为度数以获得相同的角度值。

1 个答案:

答案 0 :(得分:10)

float degreeValue = radianValue * 180.0 / pi;

(你可能意味着-7.24弧度而不是-0.7,415度)