예제 #1
0
파일: note.py 프로젝트: ieaalto/CCProject
 def __repr__(self):
     return midi_to_notation(self.pitch) + "/" + str(self.beats)
예제 #2
0
파일: note.py 프로젝트: ieaalto/CCProject
 def get_pitch_as_notation(self):
     '''
     Returns the pitch in notation, for instance 'd5'.
     :return:
     '''
     return midi_to_notation(self.pitch)