diff --git a/src/documentation/patterns/ziffers/ziffers_tonnetz.ts b/src/documentation/patterns/ziffers/ziffers_tonnetz.ts index 8318b7f..b745b10 100644 --- a/src/documentation/patterns/ziffers/ziffers_tonnetz.ts +++ b/src/documentation/patterns/ziffers/ziffers_tonnetz.ts @@ -280,28 +280,28 @@ By default hexaCycles and enneaCycles have 3 repetitions, while octaCyc In addition to the cyclical traversing methods, Ziffers implements traversing methods that traverse the Tonnetz in different ways. These methods are: -* powerTowers(tonnetz: number[], repeats: number = 3): Cycles trough chords using the power towers -* cubeDance(tonnetz: number[], repeats: number = 3): Cycles trough chords in a cube dance -* octaTowers(tonnetz: number[], repeats: number = 3): Cycles trough chords using the octa towers -* weitzmannRegions(tonnetz: number[]): Cycles trough chords in a Weitzmann region -* boretzRegions(tonnetz: number[]): Cycles trough chords in a Boretz region +* weitzmannRegions(tonnetz: number[]): Cycles through chords in a Weitzmann region +* boretzRegions(tonnetz: number[]): Cycles through chords in a Boretz region +* octaTowers(tonnetz: number[], repeats: number = 3): Cycles through chords using the octa towers +* cubeDance(tonnetz: number[], repeats: number = 3): Cycles through chords in a cube dance +* powerTowers(tonnetz: number[], repeats: number = 3): Cycles through chords using the power towers -**Power Towers** use four-note chords (halfdim7, m7 and 7 ). The assembly chords are of type dim7. One of the many paths for succession has been chosen. +**Weitzmann Regions** is composed only of three-note chords. Following Richard Cohn's **Weitzmann water bug** graph, the region consists of an augmented chord (body), three major chords, and three minor chords (feet). The latter related to the central chord by a minimal parsimonious movement. A cyclic order of **Nebenverdwandt / R** transformations proposed by Carl Weitzmann himself has been chosen. -**Cube Dance** is another graph that is built primarily with HexaCycles, except that it adds augmented triads as assemblers. As with Power Towers, one possible path has been selected. +**Boretz Regions** is the four-note analogue of the Weitzmann regions. Richard Cohn draws them in **Boretz Spiders**, a graph consisting of 8 feet between 7th and half-diminished 7th chords. The body (prosoma-opisthosoma) is a dim7 chord, related to the others by a semitonal movement. -**Octa Towers** TBD. +**OctaTowers** is a graph composed of **12** chords, whose types are halfdim7, m7 and 7. A reading from left to right in an ascending diagonal has been chosen. -**Weitzmann Regions** TBD. +**Cube Dance** is another graph of **28** chords that is built primarily with HexaCycles, except that it adds augmented triads as assemblers. As with Power Towers, one possible path has been selected. -**Boretz Regions** TBD. +**Power Towers** use **39** four-note chords (halfdim7, m7 and 7). As you can notice, it is composed of 3 OctaTowers assembled by dim7 type chords. One of the many paths for succession has been chosen. -Both Cube Dance and Power Towers have many chords, so sometimes it will be convenient to slice up fragments of the cycles. We encourage you to explore these methods and their different parameters. The tonnetz traversing methods can be used in combination with the Ziffers generative methods to sequence, arpeggiate and to randomize the chords in different ways. +As you have noticed, all these graphs usually have many chords, so sometimes it will be convenient to slice up fragments of the cycles. We encourage you to explore these methods and their different parameters. The tonnetz traversing methods can be used in combination with the Ziffers generative methods to sequence, arpeggiate and to randomize the chords in different ways. ${makeExample( "Cube Dance swing", ` - z1("0").cubeDance([3,4,5]) +z1("0").cubeDance([3,4,5]) .sound("sine") .ad(r(0.1,0.5),0.1) .out() @@ -312,7 +312,7 @@ ${makeExample( ${makeExample( "Selecting subset of chords from the cube dance", ` - z1("1/2 0") +z1("1/2 0") .cubeDance([3,4,5],4) .at(0,8,2,rI(9,14)) .sound("triangle") @@ -326,7 +326,7 @@ ${makeExample( ${makeExample( "Power Towers with pulse", ` - z1("1/4 2").powerTowers([2,3,7]) +z1("1/4 2").powerTowers([2,3,7]) .between(5,11) .arpeggio("e 0 3 1 2") .sound("sine") @@ -336,6 +336,20 @@ ${makeExample( true, )} +${makeExample( + "Between an OctaTower", + ` +z1("s. 0") + .octaTowers() + .between(2,8) + .arpeggio(3,2,1,rI(1,5)) + .sound("sawtooth") + .adsr(0.1,0.150, 0.1) + .out() + `, + true +)} + ${makeExample( "Selecting chords from the weitzmann region", ` @@ -350,5 +364,21 @@ z1("1/8 0") true )} +${makeExample( +"Boretz Spider", +` +z1("1/16 0") + .boretzRegions([1,4,7]) + .at(2,rI(3,7),4,6) + .arpeggio(1,0,2,rI(1,4)) + .sound("square") + .adsr(0.1, 0.1, 0.1, 0.2) + .out() +`, +true +)} + +* Remark F: You can find more details about Weitzmann and Boretz regions in chapters 4 and 7 of Richard Cohn's book [Audacious Euphony: Chromatic Harmony and the Triad's Second Nature (2012)](https://books.google.com.pe/books?id=rZxZCMRiO9EC&pg=PA59&hl=es&source=gbs_toc_r&cad=2#v=onepage&q&f=false). + `; };