Watch FunProgramming [video 17] explaining how to create colors using HSB values
Write a program to create this image, using colorMode(HSB).
Coding Hint :
You can replace this “wrapping”code where x increases then wraps back to zero:
x = x + 1;
if (x >= width)
{
x = 0;
}
with this single line:
x = (x+1) % width;