+
+ def getVelocity(self, pos) :
+ vel = (float(self.dispWidth) - pos[1]) / self.dispWidth
+ vel = int(vel * (MIDI_VELOCITY_RANGE[1] - MIDI_VELOCITY_RANGE[0])) + MIDI_VELOCITY_RANGE[0]
+ return vel
+
+ def getPan(self, index) :
+ pan = float(index) / (self.keyboardLength -1)
+ pan = int(pan * (MIDI_PAN_RANGE[1] - MIDI_PAN_RANGE[0])) + MIDI_PAN_RANGE[0]
+ return pan