BeginningCodersBootcamp icon indicating copy to clipboard operation
BeginningCodersBootcamp copied to clipboard

discussion

Open mayakraft opened this issue 6 years ago • 0 comments

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();

mayakraft avatar Sep 30 '19 19:09 mayakraft