p5 scrollable test

P5.background(0) P5.noCursor(); P5.noFill(); P5.strokeWeight(0.7); P5.stroke(255); rotZ = rotZ + 0.0002; rotX -= ritmo; rotY += 0.0001; cont++; for (let i = 0; i < 50; i++) { P5.rotate(rotX); P5.rotateZ(rotZ); P5.translate(x, y); P5.box(60, 660, 0); } if (x < 120) { x++; ritmo = 0.000005; } else { x = 720; ritmo = 0.00005; }
P5.background(0) P5.noCursor(); P5.noFill(); P5.strokeWeight(0.7); P5.stroke(255); rotZ = rotZ + 0.0002; rotX -= ritmo; rotY += 0.0001; cont++; for (let i = 0; i < 50; i++) { P5.rotate(rotX); P5.rotateZ(rotZ); P5.translate(i, i); P5.box(60, 660, 0); } if (x < 120) { x++; ritmo = 0.000005; } else { x = 720; ritmo = 0.00005; };