annotate utils/package.lisp @ 35:1d757c33e00e
Changes for midi file import
darcs-hash:20070502153016-f76cc-89b748c36180ccaca77d2a70a65a6e7f77df8d43.gz
author |
David Lewis <d.lewis@gold.ac.uk> |
date |
Wed, 02 May 2007 16:30:16 +0100 |
parents |
d1010755f507 |
children |
ad321ce17e3e |
rev |
line source |
m@23
|
1 (cl:defpackage #:amuse-utils
|
d@33
|
2 (:use #:common-lisp #:amuse #:midi)
|
d@33
|
3 (:export #:pitchedp
|
d@33
|
4 #:unpitchedp
|
d@33
|
5 #:midi-pitch-distribution
|
d@33
|
6 #:pitch-class-distribution
|
d@33
|
7 #:normalised-midi-pitch-distribution
|
d@33
|
8 #:normalised-pitch-class-distribution
|
d@33
|
9 #:normalise-vector
|
d@33
|
10 #:bar-number
|
d@33
|
11 #:bass-note
|
d@33
|
12 #:crotchets-in-a-bar
|
d@33
|
13 #:sounding-events
|
d@33
|
14 #:play
|
d@33
|
15 #:make-midi
|
d@33
|
16 #:global-messages
|
d@33
|
17 #:tempo-message
|
d@33
|
18 #:event-messages
|
d@33
|
19 #:get-patch-for-midi
|
d@33
|
20 #:get-channel-for-midi
|
d@33
|
21 #:get-pitch-for-midi
|
d@33
|
22 #:get-velocity-for-midi
|
d@33
|
23 ))
|