Skip to content

Instantly share code, notes, and snippets.

@exnihilodub
Last active March 18, 2016 12:23
Show Gist options
  • Select an option

  • Save exnihilodub/4d1fb8888853369d5ef9 to your computer and use it in GitHub Desktop.

Select an option

Save exnihilodub/4d1fb8888853369d5ef9 to your computer and use it in GitHub Desktop.
nice stuff
void setup() {
size(800, 600);
frameRate(60);
background(0);
}
void draw(){
stroke(255);
strokeWeight(1);
stroke(255, 255, 255, 15);
float randomx = random(0, 600);
float randomy = random(0, 600);
float randomq = random(0, 600);
float randomz = random(0, 600);
println("randomx: "+randomx + " randomy:" +randomy) ;
line(randomx, randomy, randomq, randomz);
}
@dyln
Copy link

dyln commented Mar 18, 2016

örümcek ağı gibi şeyyoluyo

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