Why point() draw black point in??
in
Programming Questions
•
6 months ago
Why in this function the point are black??
int w = 320;
int l = 240;
void setup()
{
size(w, l);
smooth();
frameRate(100000);
background(255);
}
void draw()
{
fill (255,0,0);
point(random(w),random(l));
}
int l = 240;
void setup()
{
size(w, l);
smooth();
frameRate(100000);
background(255);
}
void draw()
{
fill (255,0,0);
point(random(w),random(l));
}
1