xxxxxxxxxx
71
lines = 1;
count1=0;
count2=0;
count3=0;
xoff=0;
function setup() {
createCanvas(700, 700);
strokeWeight(2);
background("#ffffff");
a=random(-300,300);
b=random(-100,100);
s=random(1500,2000);
r1=random(200)
i = random(0,300);
let shades = ["#91382C", "ffffff", "#D6837F", "#D7C585","#5A756F", "#8F7925"];
let shade = random(shades);
cS = color(shade);
stroke(shade);
}
function draw() {
translate(width / 2, height / 2);
var radius = 300;
var angle = TAU / 100;
var x = cos(angle * i) * radius;
var y = sin(angle * i) * radius;
i = i + 0.1;
line(a,0,x,y);
count1=count1+1;
count2=count2+1;
count3=count3+1;
if (count3>r1){
let shades = ["#91382C", "#ffffff", "#D6837F", "#D7C585","#5A756F", "#8F7925"];
let shade = random(shades);
cS = color(shade);
stroke(shade);
count3=0;
r1=random(200)
}
if (count1>1000){
a=random(-300,300);
b=random(-a,a);
count1=0;
i = random(0,300);
}
if (count2>s){noLoop();}
}
function keyReleased() {
if (keyCode == DELETE || keyCode == BACKSPACE) noLoop();
if (keyCode == ENTER || keyCode == RETURN) loop();
if (keyCode == ESCAPE) background(248);
if (key == 's' || key == 'S') saveCanvas();
if (key == '1') lines = 1;
if (key == '2') lines = 2;
if (key == '3') lines = 3;
if (key == '4') lines = 4;
if (key == '5') lines = 5;
if (key == '6') lines = 6;
if (key == '7') lines = 7;
}