is the concept of breaking out lines into "helper variables" somewhere in here? ```c++ sin(ofGetElapsedTimef() * speed) * ofGetWidth(); ``` into ```c++ float freq = ofGetElapsedTimef() * speed; sin(freq) * ofGetWidth(); ```