Skip to content

Instantly share code, notes, and snippets.

@amiika
Created November 11, 2022 21:47
Show Gist options
  • Save amiika/41c75b743198b415385430e3686438f1 to your computer and use it in GitHub Desktop.
Save amiika/41c75b743198b415385430e3686438f1 to your computer and use it in GitHub Desktop.
# Does the same thing as: https://slonimsky.netlify.app/
def slonimsky(nodes, interpolations, divisions=1)
return [] if (nodes <= 0)
nodes.times.collect { |i| [i * divisions] + interpolations.map { |x| (i * divisions) + x }}.flatten
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment