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

504 B

Math::Degrees

float Degrees(float radians);

Degrees 函数将弧度值转换为角度值。转换公式为:角度 = 弧度 * (180 / PI)。该函数是 Radians 函数的逆函数,常用于将三角函数的返回值或物理引擎中的弧度值转换为人机界面友好的角度值。

示例:

#include <XCEngine/Math/Math.h>

float radians = Math::HALF_PI;
float degrees = Math::Degrees(radians);

相关文档