I know how to do it with black and white
JavaScript
x
12
12
1
let a = 0;
2
3
function setup() {
4
createCanvas(400, 400);
5
}
6
7
function draw() {
8
background(220);
9
fill(map(sin(a), -1, 1, 0, 255));
10
rect(20, 20, 50);
11
a += 0.01;
12
}
JavaScript
1
1
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.1/p5.js"></script>
I would like it to be purple instead of black but I can’t do it. I would like to achieve something like this.
Advertisement
Answer
I dont know much about p5.js. But simple googling and would offer this solution
JavaScript
1
17
17
1
let a = 0;
2
let white;
3
let purple;
4
5
function setup() {
6
createCanvas(400, 400);
7
white = color(255, 255, 255);
8
purple = color(160, 32, 240);
9
}
10
11
function draw() {
12
background(220);
13
const temp = map(sin(a), -1, 1, 0, 1);
14
fill(lerpColor(white, purple, temp));
15
rect(20, 20, 50);
16
a += 0.01;
17
}
JavaScript
1
1
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.5.0/p5.js"></script>
With lerp color you could create implementation that supports even more colors.
JavaScript
1
13
13
1
let white = color(255, 255, 255); // at 0 (-1 on sin)
2
let purple = color(160, 32, 240); // at 0.5 ( 0 on sin)
3
let blue = color(0,0,255); // at 1 (1 on sin)
4
5
let temp = map(sin(a),-1,1,0,1);
6
if(temp < 0.5){
7
let temp2 = map(temp, 0, 0.5, 0, 1);
8
result = lerpColor(white, purple, temp2);
9
} else {
10
let temp2 = map(temp, 0.5, 1, 0, 1);
11
result = lerpColor(purple, blue, temp2);
12
}
13
With some refactoring and more work this could support arbitrary number of colors. You could have a sin go through the entire rainbow.