Beispiel #1
0
 public Note(ENote aNote, int aOctave, ENoteValue aNoteValue,
             EAccidental aAccidental)
 {
     NoteName   = aNote;
     Eighth     = aOctave;
     NoteValue  = aNoteValue;
     Accidental = aAccidental;
 }
Beispiel #2
0
        public Clef(Note aKey, int aBeat, ENoteValue aNoteValue, EClefSymbol aClefSymbol)
        {
            Key      = aKey;
            ClefInfo = new ClefInfo
            {
                Beat  = aBeat,
                Value = aNoteValue
            };

            ClefSymbol = aClefSymbol;
        }
Beispiel #3
0
 public Note(ENote aNote, int aOctave, ENoteValue aNoteValue,
             EAccidental aAccidental, EDotType aDotType) : this(aNote, aOctave, aNoteValue, aAccidental)
 {
     DotType = aDotType;
 }