Changeset 1980
- Timestamp:
- 09/16/09 10:06:22 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/strasheela/contributions/anders/ET41/testing/Output-test.oz
r1944 r1980 11 11 /* 12 12 13 %% all 41 ET notes 13 14 declare 14 15 MyScore = {Score.makeScore 15 seq(items:{Map {List.number 0 40 1} 16 fun {$ PC} 17 note(duration:1 18 amplitude:64 19 pitchClass:PC 20 octave:4) 21 end} 16 seq({Map {List.number 0 40 1} 17 fun {$ PC} 18 note(duration:1 19 pitchClass:PC 20 octave:4) 21 end} 22 22 startTime:0 23 23 timeUnit:beats) 24 24 unit(seq:Score.sequential 25 25 note:HS.score.note)} 26 {MyScore wait} 26 27 %% 27 28 {ET41.out.renderAndShowLilypond MyScore 28 29 unit(file:"41ET-test")} 29 30 31 32 %% chord notation test 33 declare 34 fun {MakeChord PCs} 35 sim({Map PCs 36 fun {$ PC} 37 note(duration:1 38 pitchClass:PC 39 octave:4) 40 end}) 41 end 42 MyScore = {Score.make 43 seq([{MakeChord [0 15 30]} 44 {MakeChord [1 16 31]} 45 {MakeChord [2 17 32]}] 46 startTime:0 47 timeUnit:beats) 48 add(note:HS.score.note)} 49 {MyScore wait} 50 %% 51 {ET41.out.renderAndShowLilypond MyScore 52 unit(file:"41ET-test2")} 53 54 30 55 */