- 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
504 B
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);
相关文档
- Math 总览 - 返回 Math 概览