We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Here is a very short program that should draw a rectangle with a green border:
size(400, 400, P3D);
stroke(0, 255, 0);
rect(0, 0, 50, 50);
On most computers, this works just fine. But on some computers (my home computer, and a computer in a lab where I teach), the rectangle ends up with a blue border. Some specifics:
I actually discovered this issue in a larger program that was supposed to produce random pastel-colored butterflies. On my home computer, all butterflies are red.
How could such a simple program produce such unexpected results?
Answers
It is a bit puzzling, but the fact it depends on the computer tend to push the blame on the graphic card. A random, but perhaps effective first move is to check if there are updates for the graphic card driver.
Since you are on the JS mode, it might also be a problem with the WebGL renderer. Do you run the sketches on the same versions of the same browser?