first commit

This commit is contained in:
Aleks Rutins 2023-04-14 11:07:04 -04:00
commit 391f9e9a0b
10 changed files with 225 additions and 0 deletions

6
util.hh Normal file
View file

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