Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:49
Show Gist options
  • Save claytical/e7c4a71ccdfd3d890f21 to your computer and use it in GitHub Desktop.
Save claytical/e7c4a71ccdfd3d890f21 to your computer and use it in GitHub Desktop.
Random Rect Colors
function setup() {
createCanvas(400,400);
}
function draw() {
r = random(255);
g = random(255);
b = random(255);
x = random(width);
y = random(height);
fill(r,g,b);
rect(x,y,10,10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment