Home
last modified time | relevance | path

Searched defs:deg (Results 1 – 1 of 1) sorted by relevance

/CTR-SDK-0.14.4/include/nn/math/
Dmath_Triangular.h58 #define NN_MATH_DEG_TO_FIDX(deg) ((deg) * (256.f / 360.f) ) argument
59 #define NN_MATH_DEG_TO_RAD(deg) ((deg) * (::nn::math::F_PI / 180.0f) ) argument
156 inline f32 SinDeg(f32 deg) { return SinFIdx(NN_MATH_DEG_TO_FIDX(deg)); } in SinDeg()
165 inline f32 CosDeg(f32 deg) { return CosFIdx(NN_MATH_DEG_TO_FIDX(deg)); } in CosDeg()
176 inline void SinCosDeg(f32* s, f32* c, f32 deg) { SinCosFIdx(s, c, NN_MATH_DEG_TO_FIDX(deg)); } in SinCosDeg()
185 inline f32 TanDeg(f32 deg) { return TanFIdx(NN_MATH_DEG_TO_FIDX(deg)); } in TanDeg()