topical media & game development
graphic-processing-learning-10-example-10-8-example-10-8.pde / pde
// Learning Processing
// Daniel Shiffman
// http://www.learningprocessing.com
// Example 10-8: Fancier looking raindrop
background(255);
smooth();
for (int i = 2; i < 8; i++ ) {
noStroke();
fill(0);
ellipse(width/2,height/2 + i*4,i*2,i*2);
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.