| 73 | } |
| 74 | |
| 75 | float PitchToSpeed::Value(int samplesIn) |
| 76 | { |
| 77 | float bend = mPitchBend ? mPitchBend->GetValue(samplesIn) : 0; |
| 78 | return TheScale->PitchToFreq(mPitch + bend) / mReferenceFreq; |
| 79 | } |
| 80 | |
| 81 | void PitchToSpeed::SaveLayout(ofxJSONElement& moduleInfo) |
| 82 | { |
nothing calls this directly
no test coverage detected