snd_Sound3DCalculator OK

This commit is contained in:
robojumper
2025-05-28 21:53:10 +02:00
parent 7dde7fec51
commit d004459b3c
8 changed files with 360 additions and 64 deletions
@@ -18,7 +18,7 @@ using ::ceil;
using ::ceilf;
using ::copysign;
using ::cos;
using ::cosf;
// using ::cosf;
using ::fabsf;
using ::floor;
using ::floorf;
@@ -43,6 +43,10 @@ inline float sqrt(float x) {
return ::sqrtf(x);
}
inline float cosf(float x) {
return cos(x);
}
// TODO: Very fake!
// inline double fabs_wrapper(double x) {
// return __fabs(x);