3#include "model/scale/note_set.h"
13 int8_t
operator[](uint8_t degree)
const {
return degreeOffset[degree]; }
14 int8_t&
operator[](uint8_t degree) {
return degreeOffset[degree]; }
23 NoteSet
applyTo(NoteSet notes)
const;
26 int8_t degreeOffset[kMaxScaleSize] = {0};
Definition scale_change.h:5
NoteSet source
Definition scale_change.h:9
int8_t operator[](uint8_t degree) const
Definition scale_change.h:13
NoteSet applyTo(NoteSet notes) const
Definition scale_change.cpp:4