xxxxxxxxxx
86
let width = 7000;
let height = 7000;
let angle = 0;
let points = [];
let pg;
function setup(){
createCanvas(width,height);
}
function draw(){
angleMode(DEGREES);
let radius = width * 1.5;
let length = angle + random(3,10);
let prev_x = cos(angle) * radius;
let prev_y = sin(angle) * radius;
let next_x = cos(length) * radius;
let next_y = sin(length) * radius;
points.push({first_x:prev_x,
first_y:prev_y,
sec_x : next_x,
sec_y : next_y
});
angle = length;
if(angle >= 360){
noLoop();
let temp = points[0];
for(let i=0; i<points.length; i++){
let prev_x = points[i].first_x;
let prev_y = points[i].first_y;
let next_x = points[i].sec_x;
let next_y = points[i].sec_y;
if(i == points.length - 1){
next_x = temp.first_x;
next_y = temp.first_y;
}
stroke(255);
strokeWeight(10);
// let gradient = createLinearGradient(0,width);
// gradient.colors(
// 0.5, color(random(0,255), random(0,255), random(0,255)),
// 1, color(random(0,255), random(0,255), random(0,255)));
// fillGradient(gradient);
// fill('hsba('+floor(random(150,260))+','+60 +'%,70%,1)');
fill(random(['black','yellow']))
triangle(width/2,height/2,prev_x,
prev_y,
next_x,
next_y);
}
saveCanvas(document.title+random(0,200000), 'png');
}
}