qnt   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pattern-language.xtm

Implementation

(define qnt
  (lambda (pitch . args)
    (pc:quantize pitch (if (null? args) *scale*
                       (map (lambda (pitch)
                              (modulo pitch 12))
                            (car args))))))


Back to Index