Home
last modified time | relevance | path

Searched refs:F_PI (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-0.14.4/include/nn/math/
Dmath_Triangular.h57 #define NN_MATH_RAD_TO_FIDX(rad) ((rad) * (256.f / (2.0f * ::nn::math::F_PI)))
59 #define NN_MATH_DEG_TO_RAD(deg) ((deg) * (::nn::math::F_PI / 180.0f) )
60 #define NN_MATH_RAD_TO_DEG(rad) ((rad) * (180.0f / ::nn::math::F_PI) )
61 #define NN_MATH_FIDX_TO_RAD(fidx) ((fidx) * ((2.0f * ::nn::math::F_PI) / 256.f))
Dmath_Constant.h30 const f32 F_PI = 3.141592653589793f; // π variable
/CTR-SDK-0.14.4/sources/libraries/math/
Dmath_Equation.cpp295 root[0] = r_q2 * CosRad(theta_3 + 0 * F_PI / 3) - b_3; in SolveEquation3()
296 root[1] = r_q2 * CosRad(theta_3 + 2 * F_PI / 3) - b_3; in SolveEquation3()
297 root[2] = r_q2 * CosRad(theta_3 + 4 * F_PI / 3) - b_3; in SolveEquation3()
/CTR-SDK-0.14.4/include/nn/math/inline/
Dmath_Matrix34.ipp262 NN_ASSERT((fovy > 0.0f) && (fovy < math::F_PI));