Skip to content

18earlet/WoodstockWave

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WoodstockWave

wave-example

Description

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.

Instructions

PART 1:

  1. Fork this repo.
  2. paste the (broken) starter code from the repo's .pde file into processing
  3. fix the code, so it draws a set of concentric (inside each other) circles
  4. set your own stroke, fill, background, strokeWeight, number of circles, width between circles

PART 2:

  1. declare two new variables as floats: arcStart and arcEnd
  2. set their initial values to 0
  3. in your draw function, change the ellipse function into an arc function, by just replacing the word "ellipse" with "arc", then add two more arguments, so the fifth argument is the variable called arcStart and the sixth argument is arcEnd.
  4. in the last line of the draw function, increment the two variables by 0.05

PART 3:

[ coming soon ]

WRAP-UP:

  1. Copy your code into your WoodstockWave repo's .pde file
  2. Update the header and footer text of index.html.
  3. Check your work at <YourUsername>.github.io/WoodstockWave
  4. Create a pull request.

Credit

This assignment is based on original work created by Jerome Herr.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Processing 51.6%
  • HTML 28.8%
  • CSS 19.6%