xxxxxxxxxx
void setup()
{
int x = 0;
size(800, 600);
strokeWeight(6);
colorMode(RGB);
for(int r = 0; r < 255; r++) {
for(int g = 0; g < 255; g++) {
for(int b = 0; b < 255; b++) {
stroke(r,g,b);
x++;
point(x, 300);
}
}
}
}