| 69 | } |
| 70 | |
| 71 | void CustomCallbackApp::mouseDown( MouseEvent event ) |
| 72 | { |
| 73 | timeline().apply( &mCircle.mPos, vec2( event.getPos() ), 2.0f, EaseInOutCubic() ) |
| 74 | .startFn( ColorToGreenFunctor( &gBackgroundColor ) ) |
| 75 | .updateFn( std::bind( &Circle::posUpdate, &mCircle ) ) |
| 76 | .finishFn( setBackgroundToBlue ); |
| 77 | } |
| 78 | |
| 79 | void CustomCallbackApp::draw() |
| 80 | { |
nothing calls this directly
no test coverage detected