I made a Happy Mothers day program that involved text slowly changing colors. I'm using HSB, and slowly changed the Hue value until I got to 255 then jumped back to 0. But this doesn't seem to give that smooth color transition I'm looking for.
This is basically what I'm doing:
fill(clamp(frameCount*0.2, 255), 255, 255);
function clamp(c, cap){
do { c -= cap } while ( c > cap );
return c
}
Full program: https://editor.p5js.org/KoderM/sketches/RekPOFctj
Does anybody know how do get a smooth rainbow effect with HSB color values?