Last active
March 18, 2016 12:23
-
-
Save exnihilodub/4d1fb8888853369d5ef9 to your computer and use it in GitHub Desktop.
nice stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
örümcek ağı gibi şeyyoluyo