xxxxxxxxxx
28
const pixelSize = 5
const w = 30
const h = 30
function setup() {
createCanvas(pixelSize*w, pixelSize*h)
colorMode(RGB, 1, 1, 1, 1)
blendMode(MULTIPLY)
noStroke()
for (let y = 0; y < h; y++) {
for (let x = 0; x < w; x++) {
let i = y*w + x
if (i % 2 == 0) {
fill('red')
rect(x*pixelSize, y*pixelSize, pixelSize, pixelSize)
}
if (i % 3 == 0) {
fill('green')
rect(x*pixelSize, y*pixelSize, pixelSize, pixelSize)
}
if (i % 5 == 0) {
fill('blue')
rect(x*pixelSize, y*pixelSize, pixelSize, pixelSize)
}
}
}
}