Skip to content

Instantly share code, notes, and snippets.

@wonderburg7
Created September 16, 2018 12:29
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 wonderburg7/01ee92408f6a7dfac3c3058c3e386df3 to your computer and use it in GitHub Desktop.
Save wonderburg7/01ee92408f6a7dfac3c3058c3e386df3 to your computer and use it in GitHub Desktop.
float turtleX;
float turtleY;
float turtleHeading = 0;
int numberofsquares = 2000;
void setup() {
size(1000, 1000);
turtleX = width/2;
turtleY = height/2;
background(64);
strokeWeight(4);
noLoop();
}
void draw() {
for (int i = 0; i < numberofsquares; i++) {
stroke(random(256), random(256), random(256), 255);
rotateTurtle(random(360));
float length = random(0, 500);
forward(length);
rotateTurtle(90);
forward(length);
rotateTurtle(90);
forward(length);
rotateTurtle(90);
forward(length);
}
save("multisquares1.png");
}
void forward(float amount) {
float newX = turtleX + cos(radians(turtleHeading)) * amount;
float newY = turtleY + sin(radians(turtleHeading)) * amount;
line(turtleX, turtleY, newX, newY);
fill(0);
turtleX = newX;
turtleY = newY;
}
void rotateTurtle(float degrees) {
turtleHeading += degrees;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment