修正没有使用浮点值做rad2deg/deg2rad计算的问题

This commit is contained in:
2025-07-07 00:34:37 +08:00
parent e5c63827ab
commit 847f448ce2

View File

@@ -82,19 +82,17 @@ namespace hgl
/**
* 角度转弧度
*/
template<typename T>
inline constexpr T deg2rad(const T deg)
inline constexpr float deg2rad(const float deg)
{
return T(deg*(HGL_PI/180.0f));
return deg*(HGL_PI/180.0f);
}
/**
* 弧度转角度
*/
template<typename T>
inline constexpr T rad2deg(const T rad)
inline constexpr double rad2deg(const float rad)
{
return T(rad*(180.0f/HGL_PI));
return rad*(180.0f/HGL_PI);
}
/**