Java Code Examples for processing.core.PApplet#main()

The following examples show how to use processing.core.PApplet#main() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProcessingSigViewer_V2.java    From buffer_bci with GNU General Public License v3.0 5 votes vote down vote up
static public void main(String[] passedArgs) {
  String[] appletArgs = new String[] { "ProcessingSigViewer_V2" };
  if (passedArgs != null) {
    PApplet.main(concat(appletArgs, passedArgs));
  } else {
    PApplet.main(appletArgs);
  }
}
 
Example 2
Source File: TagCloud.java    From tagcloud with MIT License 5 votes vote down vote up
public static void main(String[] args) {
    try {
        Configuration.getInstance().load(new FileInputStream("config.properties"));
    } catch (IOException e) {
        e.printStackTrace();
        return;
    }
    PApplet.main(new String[]{"--present", "TagCloudGenerator"});
}
 
Example 3
Source File: Sampling_Poisson2D_devAnim1.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Sampling_Poisson2D_devAnim1.class.getName() });
}
 
Example 4
Source File: Skylight_BulletPhysics_Basic.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Skylight_BulletPhysics_Basic.class.getName() });
}
 
Example 5
Source File: Shadertoy_MengerSponge.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Shadertoy_MengerSponge.class.getName() });
}
 
Example 6
Source File: PickAndMove.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { PickAndMove.class.getName() });
}
 
Example 7
Source File: Shadertoy_AbstractCorridor3.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Shadertoy_AbstractCorridor3.class.getName() });
}
 
Example 8
Source File: ReactionDiffusion.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { ReactionDiffusion.class.getName() });
}
 
Example 9
Source File: CoordinateMapperRGBDepth.java    From KinectPV2 with MIT License 4 votes vote down vote up
public static void main(String[] args) {
	PApplet.main(new String[] { "test.CoordinateMapperRGBDepth"});
}
 
Example 10
Source File: VolumetricTest.java    From toxiclibs with GNU Lesser General Public License v2.1 4 votes vote down vote up
public static void main(String[] args) {
    PApplet.main(new String[] { "toxi.test.VolumetricTest" });
}
 
Example 11
Source File: Skylight_BulletPhysics_Breakable3.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Skylight_BulletPhysics_Breakable3.class.getName() });
}
 
Example 12
Source File: UtilsTest.java    From PapARt with GNU Lesser General Public License v3.0 4 votes vote down vote up
public static void main(String args[]) {
    PApplet.main(new String[]{"--present", "fr.inria.papart.UtilsTest"});
}
 
Example 13
Source File: SoftBody2D_Trees.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { SoftBody2D_Trees.class.getName() });
}
 
Example 14
Source File: AntiAliasingComparison.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { AntiAliasingComparison.class.getName() });
}
 
Example 15
Source File: Simple_FXAA.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Simple_FXAA.class.getName() });
}
 
Example 16
Source File: Skylight_Movie3.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Skylight_Movie3.class.getName() });
}
 
Example 17
Source File: Shadertoy_BasicMontecarlo.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Shadertoy_BasicMontecarlo.class.getName() });
}
 
Example 18
Source File: SkeletonColorTest.java    From KinectPV2 with MIT License 4 votes vote down vote up
public static void main(String[] args) {
	PApplet.main(new String[] { "test.SkeletonColorTest"});
}
 
Example 19
Source File: Shadertoy_SimpleGreeble.java    From PixelFlow with MIT License 4 votes vote down vote up
public static void main(String args[]) {
  PApplet.main(new String[] { Shadertoy_SimpleGreeble.class.getName() });
}
 
Example 20
Source File: CMKY2014Mapper.java    From haxademic with MIT License 4 votes vote down vote up
public static void main(String args[]) {
	PApplet.main(new String[] { "--hide-stop", "--bgcolor=000000", CMKY2014Mapper.class.getName() });
}