Closed groos closed 5 years ago
Get a new Scale object representing the mode at the provided degree of the current scale:
var a4 = teoria.note('a4'); var ionian= a4.scale('ionian'); var newMode = ionian.mode(3); console.log(newMode.modeName); // 'phrygian'
var locrian = a4.scale('locrian'); var otherMode = locrian.mode(3); console.log(otherMode.modeName); // 'dorian'
Get a new Scale object representing the mode at the provided degree of the current scale:
var a4 = teoria.note('a4'); var ionian= a4.scale('ionian'); var newMode = ionian.mode(3); console.log(newMode.modeName); // 'phrygian'
var locrian = a4.scale('locrian'); var otherMode = locrian.mode(3); console.log(otherMode.modeName); // 'dorian'