21 lines
504 B
Markdown
21 lines
504 B
Markdown
|
|
# Math::Degrees
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
float Degrees(float radians);
|
||
|
|
```
|
||
|
|
|
||
|
|
`Degrees` 函数将弧度值转换为角度值。转换公式为:`角度 = 弧度 * (180 / PI)`。该函数是 `Radians` 函数的逆函数,常用于将三角函数的返回值或物理引擎中的弧度值转换为人机界面友好的角度值。
|
||
|
|
|
||
|
|
**示例:**
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
#include <XCEngine/Math/Math.h>
|
||
|
|
|
||
|
|
float radians = Math::HALF_PI;
|
||
|
|
float degrees = Math::Degrees(radians);
|
||
|
|
```
|
||
|
|
|
||
|
|
## 相关文档
|
||
|
|
|
||
|
|
- [Math 总览](h.md) - 返回 Math 概览
|