chrd   scheme


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

Implementation

;; always requires type, will default to *root* if second arg not provided
(define chrd
  (lambda (type . args)
    (pc:chord (if (null? args) *root*
                  (modulo (car args) 12))
              type)))


Back to Index