| 23 | } |
| 24 | |
| 25 | void WidthGraph::paint(juce::Graphics& g) |
| 26 | { |
| 27 | // The paint() function remains unchanged, still extremely simple and fast |
| 28 | g.setColour(COLOUR6); |
| 29 | g.drawRect(getLocalBounds(), 1); |
| 30 | g.drawImage(pointCloudCache, getLocalBounds().toFloat()); |
| 31 | } |
| 32 | |
| 33 | void WidthGraph::timerCallback() |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected