utils_spec.lua 540 B

12345678910111213141516171819202122232425
  1. local utils = require "modules.utils"
  2. local constants = require "modules.constants"
  3. describe("utils:", function()
  4. end)
  5. --[[
  6. clamp(value, min, max)
  7. deadzone(value, size)
  8. threshold(value, threshold)
  9. tolerance(value, threshold)
  10. map(value, min_in, max_in, min_out, max_out)
  11. lerp(progress, low, high)
  12. smoothstep(progress, low, high)
  13. round(value, precision)
  14. wrap(value, limit)
  15. is_pot(value)
  16. project_on(out, a, b)
  17. project_from(out, a, b)
  18. mirror_on(out, a, b)
  19. reflect(out, i, n)
  20. refract(out, i, n, ior)
  21. angle_to(a, b)
  22. angle_between(a, b)
  23. --]]