mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-18 00:05:22 +00:00
More main progress; tons of headers & stuff
Former-commit-id: a6e365791b
This commit is contained in:
@@ -8,9 +8,12 @@ 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));
|
||||
int v = static_cast< int >(x * (1.f / y));
|
||||
return x - v * y;
|
||||
}
|
||||
template < typename T >
|
||||
static const T& Clamp(const T& min, const T& val, const T& max);
|
||||
// ClampRadians__5CMathFf
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user