Skip to content

Instantly share code, notes, and snippets.

@evgeniy2002
Created March 9, 2024 13:28
Show Gist options
  • Save evgeniy2002/2f4055d090df951139662b00c8425214 to your computer and use it in GitHub Desktop.
Save evgeniy2002/2f4055d090df951139662b00c8425214 to your computer and use it in GitHub Desktop.
function lerp(a,b,t){
return a * (1 - t) + b * t
let r = lerp(min_radius, max_radius, Math.random())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment