done with chord examples

This commit is contained in:
2023-09-26 23:42:33 +02:00
parent af0713aa6f
commit a2e8b49f01

View File

@ -176,16 +176,18 @@ beat(4) :: sound('breaks165').stretch(4).out()
${makeExample( ${makeExample(
"Chord transposition with named chords", "Chord transposition with named chords",
` `
z1('e C9:4 Emin:4 F7%-1:4 Emaj%-1:4') z1('1/4 Cmin!3 Fmin!3 Fmin%-1 Fmin%-2 Fmin%-1')
.sound("stab").out() .sound("sine").bpf(500 + usine(1/4) * 2000)
.out()
` `
)} )}
${makeExample( ${makeExample(
"Programmatic inversions", "Programmatic inversions",
` `
z1('i v vi iv').invert([1,-1,-2,0].beat(4)) z1('1/6 i v 1/3 vi iv').invert([1,-1,-2,0].beat(4))
.sound("sawtooth").out() .sound("sawtooth").cutoff(1000)
.lpadsr(2, 0, .2, 0, 0).out()
` `
)} )}