xxxxxxxxxx
28
let x1 = 0;
let y1 = 0;
let x2 = 0;
let y2 = 0;
function setup() {
createCanvas(750, 750);
background(200);
}
function draw() {
line(x1,y1,x1+50,y1);
y1=y1+5;
line(x2,y2,x2,y2+50);
x2=x2+5;
// if (frameCount%10 == 1) {y1=y1+50}
if (y1==750) {y1=0; x1=x1+100;}
if (x2==750) {x2=0; y2=y2+100;}
if (y2>750) {noLoop();}
}