Rich Cameron – Project 0
A. Ninety Parallel Sinusoids
for (int y_cnt=0; y_cnt < 90; y_cnt++) { float period = 0.10; beginShape(); for (int x=0; x < width; x++) { float y = 20 * sin (radians(x) / period); vertex (x - 15, y + 100 + (y_cnt * 6)); period += 0.00056; } endShape(); } |
B. Pong
Click here to play
Click here for source
Comments Off on Rich Cameron – Project 0