Пример #1
0
 public static void main(String[] passedArgs) {
   String[] appletArgs = new String[] {"EvvGC_GUI_v0_4"};
   if (passedArgs != null) {
     PApplet.main(concat(appletArgs, passedArgs));
   } else {
     PApplet.main(appletArgs);
   }
 }
 public static void main(String[] passedArgs) {
   String[] appletArgs =
       new String[] {
         "--full-screen", "--bgcolor=#666666", "--stop-color=#cccccc", "fruitloop_processing"
       };
   if (passedArgs != null) {
     PApplet.main(concat(appletArgs, passedArgs));
   } else {
     PApplet.main(appletArgs);
   }
 }
Пример #3
0
 public static void main(String args[]) {
   PApplet.main(new String[] {"--bgcolor=#F0F0F0", "OpenWheels"});
 }