getYValueFromBPM method
- int bpm
Returns the Y-coordinate on the screen for the given TOCO value.
bpm is the TOCO value.
Returns the Y-coordinate on the screen.
Implementation
double getYValueFromBPM(int bpm) {
double adjustedBPM = (bpm - scaleOrigin).toDouble();
adjustedBPM = adjustedBPM / 2; //scaled down version for mobile phone
double y_value = yOrigin - (adjustedBPM * pixelsPerOneMM!);
//Log.i("bpmvalue",bpm+" "+adjustedBPM+" "+y_value);
return y_value;
}