Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:47
Show Gist options
  • Save claytical/a1da528ceb3b7ddd9d06 to your computer and use it in GitHub Desktop.
Save claytical/a1da528ceb3b7ddd9d06 to your computer and use it in GitHub Desktop.
Random
function setup() {
createCanvas(400,400);
}
function draw() {
var x = random(width);
var y = random(height);
fill(127,10);
stroke(100,90);
ellipse(x, y, 50, 50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment