In this assignment you will create your own customized animated wave similar to the Wave created by Jerome Herr, here: https://www.openprocessing.org/sketch/152169.
PART 1:
- Fork this repo.
- paste the (broken) starter code from the repo's .pde file into processing
- fix the code, so it draws a set of concentric (inside each other) circles
- set your own stroke, fill, background, strokeWeight, number of circles, width between circles
PART 2:
- declare two new variables as floats:
arcStartandarcEnd - set their initial values to 0
- in your draw function, change the
ellipsefunction into anarcfunction, by just replacing the word "ellipse" with "arc", then add two more arguments, so the fifth argument is the variable calledarcStartand the sixth argument isarcEnd. - in the last line of the draw function, increment the two variables by 0.05
PART 3:
[ coming soon ]
WRAP-UP:
- Copy your code into your WoodstockWave repo's
.pdefile - Update the header and footer text of
index.html. - Check your work at
<YourUsername>.github.io/WoodstockWave - Create a pull request.
This assignment is based on original work created by Jerome Herr.
