Skip to content

Instantly share code, notes, and snippets.

@memish
Last active September 25, 2018 13:03
Show Gist options
  • Select an option

  • Save memish/1548dc6ccdf4e0de19a21c6c29635a58 to your computer and use it in GitHub Desktop.

Select an option

Save memish/1548dc6ccdf4e0de19a21c6c29635a58 to your computer and use it in GitHub Desktop.
int num = 0;
void setup(){
size(600,400);
}
void draw(){
background(0);
fill(255);
//text("Hello, World",20,30);
//fill(255,0,0);
//rect(num,200,100,100);
//ellipse(56, 46, 55, 55);
//num++;
//print(num);
}
void mousePressed() {
println(mouseX + " " + mouseY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment