topical media & game development

talk show tell print

graphic-processing-learning-01-example-1-2-example-1-2.pde / pde



  // Learning Processing
  // Daniel Shiffman
  // http://www.learningprocessing.com
  
  // Example 1-2: noFill
  size(200,200);
  smooth();
  background(255);
  
  // noFill() leaves the shape with only an outline.
  noFill();
  stroke(0);
  ellipse(60,60,100,100);
  


(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.