hi I recently started learning processing..
I'm having some trouble making my program run
Could anyone tell me how I would make it run properly..basically trying to generate a randomly colored circle that follows the mouse.
thanks in advance.
void setup(){ size(200,200); myCreation = new Creation(); }
//making and using class Creation myCreation; //declare variable to hold creation object void start() { myCreation = new Creation(); //make new creation object }