xxxxxxxxxx
22
// HSB color spectrum
function setup() {
createCanvas(400, 400);
colorMode(HSB, 360, 100); // (max1=hue, max2=saturation)
}
function draw() {
background(0);
noStroke();
for (let x = 0; x < width; x++) {
for (let y = 0; y < height; y++) {
let h = map(x, 0, width, 0, 360); //hue
let s = map(y, 0, height, 100, 0); //saturation
fill(h, s, 100); // HSB->(hue, saturatioin, brightness)
rect(x, y, 1, 1); // draw 1*1 px
}
}
}