xxxxxxxxxx
33
let img;
let i
let j
function preload() {
img = loadImage('Adire.jpg');
}
function setup() {
createCanvas(600,550)
image(img,0,0);
strokeWeight(10);
}
function draw(){
for (i=0; i<20; i++)
for (j=0; j<20; j++)
//background(0);
stroke(0, 40, 200);
line(i, j, 20, 520);
//j=j-1
// if (j < 0) {
// j=
}