BeginningCodersBootcamp
BeginningCodersBootcamp copied to clipboard
A one week program to introduce the foundations of coding to beginners by creating visual art and animations in openFrameworks.
Results
1
BeginningCodersBootcamp issues
Sort by
recently updated
recently updated
newest added
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) *...