A B C D E G I P R S U 
All Classes All Packages

P

p - Variable in class pthreading.PThread
Exposed so that any subclasses can access PApplet variables (such as mouse coords).
pauseAndClearThread(PThread...) - Method in class pthreading.PThreadManager
Pause a given thread or threads (varargs) and clear so it will not draw visible on screen.
pauseAndClearThreads() - Method in class pthreading.PThreadManager
Pauses all threads and clears them from being drawn.
pauseThread(PThread...) - Method in class pthreading.PThreadManager
Pause a given thread or threads (varargs).
pauseThreads() - Method in class pthreading.PThreadManager
Pauses all threads.
PThread - Class in pthreading
Extend this class, overriding the PThread.calc() and PThread.draw() methods with your own code, then use a PThreadManager to run the thread.
PThread(PApplet) - Constructor for class pthreading.PThread
Constructs a thread.
pthreading - package pthreading
Provides the classes necessary to create and run threads in a Processing sketch, aka, a PApplet.
PThreadManager - Class in pthreading
Runs and manages PThreads.
PThreadManager(PApplet) - Constructor for class pthreading.PThreadManager
Constructs a new (empty) thread manager.
PThreadManager(PApplet, int) - Constructor for class pthreading.PThreadManager
Constructs a new (empty) thread manager with a user-specified default FPS for new threads.
PThreadManager(PApplet, Class<? extends PThread>, int, int) - Constructor for class pthreading.PThreadManager
Constructs a thread manager and creates live thread instances from the given thread class (using its constructor with no additional custom args).
PThreadManager(PApplet, Class<? extends PThread>, int, int, Object...) - Constructor for class pthreading.PThreadManager
Constructs a thread manager and creates running thread instances from the given thread class and given args (in contrast to addThread(Class, int, int) which does not support ags).
A B C D E G I P R S U 
All Classes All Packages