xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
colorMode(HSB, 360, 100, 100);;
}
function draw() {
for (let x = 0; x < width; x ++) {
for (let y = 0; y < height; y ++) {
let Hue = map(x, 0, width, 0, 360);
let Sat = map(y, 0, height, 100, 0);
stroke(Hue, Sat, 100);
point(x, y, 1, 1);
}
}
}