dynamite/util.hh
2023-04-14 11:07:04 -04:00

6 lines
No EOL
95 B
C++

#pragma once
#include <math.h>
inline float dbCo(float g) {
return powf(10.0f, g*0.05f);
}