Add files via upload

This commit is contained in:
Mihail
2024-07-31 16:11:50 +04:00
committed by GitHub
parent 10fa828bd7
commit 3b8d2b2e8c
3 changed files with 93 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
function math.Rand( low, high )
return low + (high - low) * math.random()
end
function math.Clamp( _in, low, high )
return math.min(math.max( _in, low ), high)
end
function math.Lerp(frac, from, to)
return from + (to - from) * frac
end