xxxxxxxxxx
45
let size = 20;
let x = 0;
let y = 0;
function setup() {
createCanvas(600, 500);
background(0);
}
function draw() {
push();
setupDrawingSetting();
let ch = "";
if (random(1) < 0.5) {
line(0, 0, size, size);
// fill(0);
} else {
line(0, size, size, 0);
// fill(255);
}
// rect(0, 0, size, size);
moveLocation();
pop();
}
function setupDrawingSetting() {
textAlign(LEFT, TOP);
textSize(30);
translate(x, y);
stroke(255);
strokeWeight(3);
}
function moveLocation() {
x += size;
if (x > width) {
x = 0;
y += size;
}
if (y > height) {
noLoop();
print("end");
}
}