xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
colorMode(HSB);
for (let x = 0; x < width; x++) {
for (let y = 0; y < height; y++) {
//map max hue value to width
let Hue = map(x, 0, width, 0, 360);
//map saturation value to height
let Sat = map(y, 0, height, 100, 0);
stroke(Hue, Sat, 100);
rect(x, y,1,1);
}
}
}