Skip to content

Instantly share code, notes, and snippets.

@dimkir
Created November 22, 2013 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dimkir/7600014 to your computer and use it in GitHub Desktop.
Save dimkir/7600014 to your computer and use it in GitHub Desktop.
Created using Sketch2Tweet tool
void setup() {
size(400, 400);
colorMode(HSB, 255);
background(0, 0, 0);
noStroke();
}
void draw() {
float r=random(10, 100);
fill(color(r, 255,255));
rect(r,r, r, r);
}
@dimkir
Copy link
Author

dimkir commented Nov 22, 2013

This is comment with sketch screenshot url: imge

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment