xxxxxxxxxx
27
let slike = [];
let w = 50;
let brojSlika = 2;
function preload() {
for (let i = 1; i <= brojSlika; i++) {
let jednaSlika = loadImage('img/00' + i + '.jpg');
slike.push(jednaSlika);
}
}
function setup() {
createCanvas(500, 500);
noLoop();
}
function draw() {
background(220);
let n = width / w;
for (let i = 0; i < n; i++) {
for (let j = 0; j < n; j++) {
let randomIndex = int(random(0, slike.length));
image(slike[randomIndex], i * w, j * w);
}
}
}