xxxxxxxxxx
92
function setup() {
createCanvas(500, 500);
}
function drawCarriage(x, y, d) {
strokeWeight(2);
stroke(0);
fill(255, 251, 235, 150);
circle(x, y, d);
line(x - d / 4, y + (d / 4) * 1.5, x - d / 4, y - (d / 4) * 1.5);
line(x + d / 4, y + (d / 4) * 1.5, x + d / 4, y - (d / 4) * 1.5);
line(x - d / 4, y + d / 4, x + d / 4, y + d / 4);
}
function draw() {
background(252, 255, 231, 150);
let angle = frameCount * 0.015;
let radDist = map(sin(angle), -1, 1, 100, 160);
for (let i = 0; i <= 10; i++) {
strokeWeight(0);
stroke(0);
fill(255, 234, 32);
circle(
map(sin(angle + i * 36), -1, 1, 50, 450),
map(cos(angle + i * 36), -1, 1, 50, 450),
20
);
}
for (let i = 0; i <= 5; i++) {
fill(240, 160, 75);
circle(random(500), random(500), random(15, 50));
fill(225, 238, 221);
circle(random(500), random(500), random(15, 50));
}
for (let i = 0; i <= 50; i++) {
strokeWeight(0);
stroke(0);
fill(255, 234, 32);
circle(random(0, 20), random(0, 500), random(10));
fill(240, 160, 75);
circle(random(0, 20), random(0, 500), random(10));
fill(225, 238, 221);
circle(random(0, 20), random(0, 500), random(10));
}
for (let i = 0; i <= 50; i++) {
strokeWeight(0);
stroke(0);
fill(255, 234, 32);
circle(random(480, 500), random(0, 500), random(10));
fill(240, 160, 75);
circle(random(480, 500), random(0, 500), random(10));
fill(225, 238, 221);
circle(random(480, 500), random(0, 500), random(10));
}
strokeWeight(5);
stroke(0);
fill(255, 0);
circle(250, 250, radDist*2);
strokeWeight(3);
circle(250, 250, map(sin(angle), -1, 1, 100, 250));
circle(250, 250, map(sin(angle), -1, 1, 100, 190));
//circle(250, 250, map(sin(angle),-1,1,100,130));
fill(25, 255);
circle(250, 250, 30);
strokeWeight(6);
line(250, 250, 250 - 100, 250 + 300);
line(250, 250, 250 + 100, 250 + 300);
strokeWeight(4);
line(250 - 70, 250 + 220, 250 + 70, 250 + 220);
strokeWeight(2);
stroke(51);
for (let i = 0; i <= 10; i++) {
let sinValue = sin(angle + i * 36) * radDist;
let cosValue = cos(angle + i * 36) * radDist;
x = width / 2 + cosValue;
y = height / 2 + sinValue;
fill(0, 2);
circle(x, y, 10);
let t = map(sin(angle + i * 36), -1, 1, 0, 55);
line(x, y, x, y + t);
drawCarriage(x, y + t + 20, 40);
}
}