We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
question (Read 790 times)
question
May 12th, 2005, 6:09am
 
can a point be filled with a color??
how?
Re: question
Reply #1 - May 12th, 2005, 8:03am
 
void setup(){}
void draw() {
stroke(255,0,0);
for(int i=0; i<width; i++) {
point(i,50);
}
}

the code is simple, but the philosophical and mathematical implications are enormous. Smiley
Page Index Toggle Pages: 1