annotate implementations/gsharp/classes.lisp @ 105:7f139c81752e
rename make-pitch-interval to make-chromatic-pitch-interval
darcs-hash:20070726092952-dc3a5-5a59469fbb77e74dca807e5fb277c6342bb0891b.gz
author |
c.rhodes <c.rhodes@gold.ac.uk> |
date |
Thu, 26 Jul 2007 10:29:52 +0100 |
parents |
c911d65ae94d |
children |
fd85f52d9f9d |
rev |
line source |
csr21@59
|
1 (cl:in-package "AMUSE-GSHARP")
|
csr21@59
|
2
|
csr21@59
|
3 (defclass gsharp-composition (amuse:composition)
|
csr21@59
|
4 ((buffer :initarg :buffer :reader buffer)
|
csr21@59
|
5 (tempi :initarg :tempi :reader tempi)))
|
csr21@59
|
6
|
csr21@59
|
7 (defclass gsharp-pitched-event (chromatic-pitched-event)
|
c@61
|
8 ((note :initarg :note :reader note)
|
c@61
|
9 (slice-index :initarg :slice-index)))
|