prime/include/Kyoto/Math/CMath.hpp

20 lines
391 B
C++
Raw Normal View History

2022-09-05 04:00:04 +00:00
#ifndef _CMATH_HPP
#define _CMATH_HPP
#include "types.h"
class CMath {
public:
static f32 FastCosR(f32 v);
static f32 FastSinR(f32 v);
static inline f32 FastFmod(f32 x, f32 y) {
int v = static_cast< int >(x * (1.f / y));
2022-09-05 04:00:04 +00:00
return x - v * y;
}
template < typename T >
static const T& Clamp(const T& min, const T& val, const T& max);
// ClampRadians__5CMathFf
2022-09-05 04:00:04 +00:00
};
2022-09-13 04:52:59 +00:00
#endif