| 52 | } |
| 53 | |
| 54 | void ofApp::onGuiSliderEvent(ofxDatGuiSliderEvent e) |
| 55 | { |
| 56 | if (e.target == s1){ |
| 57 | m1->setFrequency(s1->getValue()); |
| 58 | } else if (e.target == s2){ |
| 59 | m1->setAmplitude(s2->getValue()); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | void ofApp::onGuiDropdownEvent(ofxDatGuiDropdownEvent e) |
| 64 | { |
nothing calls this directly
no test coverage detected