Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:36
Show Gist options
  • Save claytical/18fa30f7484c552c39f6 to your computer and use it in GitHub Desktop.
Save claytical/18fa30f7484c552c39f6 to your computer and use it in GitHub Desktop.
Multiplying
var r = 400;
function setup() {
createCanvas(400,400);
}
function draw() {
background(0,0,0);
ellipse(width/2, height/2, r, r);
r = r * .98;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment