UPDATE: Removed utils

This commit is contained in:
2025-03-11 19:29:28 +01:00
parent a954e8f163
commit 029dcd6190

View File

@@ -1,2 +0,0 @@
def mapped_value(value, in_min, in_max, out_min, out_max):
return (value - in_min) * (out_max - out_min) / (in_max - in_min) + out_min