xxxxxxxxxx
64
let x = 0;
let y = 0;
let spacing = 20;
function setup() {
createCanvas(600, 500);
background(54);
for (let paint = 50; paint < width; paint = paint + 8) {
ballR(paint, random(490));
}
}
let j = 0;
let k = 50;
let direction = 1;
function draw() {
stroke(56);
if (random(7) < 0.9) {
noStroke();
(x, y, random(8, 12));
fill(random(255), random(0), random(170));
} else {
stroke('#6cd8eb');
line(x + spacing, y + spacing, x, y);
}
x = x + spacing;
if (x > width) {
x = 0;
y = y + spacing;
}
for (let lineX = 0; lineX <= 600; lineX += 9) {
line(lineX, 0, lineX, height);
}
noStroke()
for(let linex = 0; linex <= 500; linex +=9)
line(linex, 0, linex, width)
ellipse(j, height / 2, 50);
j = j + direction;
if (j < width) {
print("we are in prison");
} else {
print("fredom");
direction = -1;
}
}
function ballR( x, y) {
fill(255,0,0)
ellipse(x, 50+y, 40, 40);
noFill()
let c = color('magenta');
fill(c);
ellipse(x, 10, 5, 40)
ellipse(x, 80, 5, 40)
ellipse(x, 150, 5, 40)
ellipse(x, 220, 5, 40)
noFill()
let o = color('#0f0');
fill(o);
ellipse(x, 290, 5, 40)
ellipse(x, 360, 5, 40)
ellipse(x, 430, 5, 40)
ellipse(x, 500, 5, 40)
}