Files
XCSDD/docs/api/math/h/degrees.md
ssdfasd 58a83f445a fix: improve doc link navigation and tree display
- Fix link resolution with proper relative/absolute path handling
- Improve link styling with underline decoration
- Hide leaf nodes from tree, only show directories
- Fix log file path for packaged app
2026-03-19 12:44:08 +08:00

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 概览