This should be your first tutorial with Processing. Processing is a Java-based, object-oriented computer language that is simple, yet more practical than C. It was written by two MIT graduates, and it is the best you can get. This will teach you how to create your own Doodle Kids.
Citations:
Doodle Kids!: http://virtualgs.larwe.com/Virtual_GS/Doodle_Kids.html
Full Source Code:
void setup(){
size(400,400);
background(random(225),random(225),random(225));
}
void draw(){
int mousix=mouseX;
int mousiy=mouseY;
}
void mouseDragged(){
int mousix=mouseX;
int mousiy=mouseY;
rect(mousix,mousiy,20,20);
fill(random(225),random(225),random(225));
}
Look for Part 2
AJSunsetComputerAid 1 year ago