BeginningCodersBootcamp
BeginningCodersBootcamp copied to clipboard
discussion
is the concept of breaking out lines into "helper variables" somewhere in here?
sin(ofGetElapsedTimef() * speed) * ofGetWidth();
into
float freq = ofGetElapsedTimef() * speed;
sin(freq) * ofGetWidth();