xxxxxxxxxx
36
function x1(t) {
return cos(t / 10) * 100 + sin(t / 10) * 100;
}
function y1(t) {
return sin(t / 10) * 100 + sin(t / 30) * 30 - cos(t / 9) * 190;
}
function x2(t) {
return -cos(t / 20) * 130 + sin(t / 10) * 100 + sin(t / 20) * 300;
}
function y2(t) {
return sin(t / 10) * 10 - cos(t / 20) * 100;
}
let t = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
background(20);
}
function draw() {
// background(20);
stroke(255, 80);
strokeWeight(1);
translate(width / 2, height / 2);
for (i = 0; i < 10; i++) {
line(x1(t + i), y1(t + i), x2(t + i), y2(t + i));
}
t += 0.8;
}