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.
IndexProgramming Questions & HelpPrograms › Making A Simple Drawing Tool
Page Index Toggle Pages: 1
Making A Simple Drawing Tool (Read 704 times)
Making A Simple Drawing Tool
Oct 29th, 2007, 10:57am
 
Hey there everyone, any ideas or help for a 1st time processing guy wanting to create a basic drawing tool?  Sites and code accepted,

thanks, gary
Re: Making A Simple Drawing Tool
Reply #1 - Oct 30th, 2007, 8:52am
 
we know it,s temptin' but do not double (or triple) post!

thank you.
Re: Making A Simple Drawing Tool
Reply #2 - Oct 31st, 2007, 8:47am
 
void setup() {
 size(500,500);
 background(0);
 noStroke();
 fill(255);
}

void draw() {
if (mousePressed)
 ellipse(mouseX,mouseY,5,5);
}

something like that?
Page Index Toggle Pages: 1