We are about to switch to a new forum software. Until then we have removed the registration on this forum.
how would i change these colors from going side to side to up and down?
public void display()
stroke(255);
fill(250 * sin(angle), 0, 0);
rect(x, y, w, h);
Answers
rect(x, y, w, h); to rect(y, x, w, h);