|
EditingAndRunning
This Tutorial will walk you through the basics of editing and running a Processing Project in Eclipse.
Featured, Processing, Phase-Implementation, Eclipse, ITP IntroductionThis Tutorial will walk you through the basics of editing and running a Processing Project in Eclipse. It will show you the basics of opening up your project, editing it, and running it. DetailsYou will see a folder on the left window of your screen with the name of project. This window is called the "Package Explorer." It will contain list all of your eclipse projects in your current workspace (for more detailed explaination of "workspaces" and packages see advanced documentation: TODO). Proclipsing has created an Eclipse project for you, with Processing jar files, Native Libraries, a package for containing your code, and skeleton Java Object for writing Processing Code in.
Notice that the file is opened in the center window of Eclipse. This is called the "Java Editor" window. Proclipsing has prepopulated this class with a "setup" and "draw" functions. You can write standard Processing functions in these. To run your code:
You will see a window open up with your project running in it. To run this project again, click the green play button at the top. |