3

atclojureで実際に何をしますか? インターネットでこの例を見て、倍音のループを作成し、意味を理解できませんでしたat

(defn looper [nome sound]
  (let [beat (nome)]
     (at (nome beat) (sound))
      (apply-at (nome (inc beat)) looper nome sound [])))`
4

1 に答える 1

5

このatコマンドは、Clojure ではなく倍音の一部です。

倍音チートシートは、それがタイミング関数であることを示しています。

https://github.com/overtone/overtone/raw/master/docs/cheatsheet/overtone-cheat-sheet.pdf

また、github と wiki の両方を見ることができます。

https://github.com/overtone/overtone https://github.com/overtone/overtone/wiki http://overtone.github.io/

于 2015-06-22T22:18:37.407 に答える