Skip to content

Instantly share code, notes, and snippets.

@Artoria2e5
Created July 2, 2014 15:42
Show Gist options
  • Save Artoria2e5/2679195474829435cf8c to your computer and use it in GitHub Desktop.
Save Artoria2e5/2679195474829435cf8c to your computer and use it in GitHub Desktop.
Processing hello-world save
/* x,y */
size(640,480);
background(255,255,255);
fill(0,0,255,200);
noStroke();
rect(160,120,320,240);
fill(153,153,163,150);
text("Hello, world!",0,10);
// triangle(320,
/*
for (int i = 30; i < 80; i = i+5) {
for (int j = 0; j < 80; j = j+5) {
point(i, j);
}
}*/
fill(153);
arc(200.0,250.0,75,75,0,PI);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment