| 67 | } |
| 68 | |
| 69 | float NoteToFreq::Value(int samplesIn) |
| 70 | { |
| 71 | float bend = mPitchBend ? mPitchBend->GetValue(samplesIn) : 0; |
| 72 | return TheScale->PitchToFreq(mPitch + bend); |
| 73 | } |
| 74 | |
| 75 | void NoteToFreq::SaveLayout(ofxJSONElement& moduleInfo) |
| 76 | { |
nothing calls this directly
no test coverage detected