fabianmoronzirfas
11/14/2016 - 2:18 PM

P5.js Color experiment

P5.js Color experiment

function setup() {
  colorMode(HSB, 360, 100, 100, 100);
  createCanvas(300, 300);
  var a = 0;
  var x = 0;
  while (a < 360) {
    fill(a, 75, 75);
    rect(x, 0, 5, height);
    a+=5;
    x +=5;
  }
}
function draw() {
}