3 loop code is extremely slow
in
Programming Questions
•
8 months ago
- size (500,500);
noStroke();
for (int i=0; i<=255;i++)
{for (int j=0; j<=255;j++)
{for (int k=0; k<=255;k++)
{
stroke (i,j,k);
point (i+j,k);
}
}
}
What's going on?
1