| 669 | } |
| 670 | |
| 671 | juce::Point<float> LfoEditor::fromNormalized(juce::Point<float> normalizedPoint) |
| 672 | { |
| 673 | // Ensure the calculation is done with floats and returns a float point |
| 674 | return { normalizedPoint.x * (float) getWidth(), (1.0f - normalizedPoint.y) * (float) getHeight() }; |
| 675 | } |
| 676 | |
| 677 | void LfoEditor::updateAndSortPoints() |
| 678 | { |
nothing calls this directly
no outgoing calls
no test coverage detected