| 41 | } |
| 42 | |
| 43 | juce::Range<float> LFOModSource::getRange() { |
| 44 | if (bipolar->get()) { |
| 45 | return juce::Range<float>(-0.5f, 0.5f); |
| 46 | } else { |
| 47 | return juce::Range<float>(0.0f, 1.0f); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | float LFOModSource::getPhase() { return (float)mCurPhase; } |
| 52 |
no outgoing calls
no test coverage detected