MCPcopy Index your code
hub / github.com/processing/processing / start

Method start

core/src/processing/core/PApplet.java:1324–1330  ·  view source on GitHub ↗

Called by the browser or applet viewer to inform this applet that it should start its execution. It is called after the init method and each time the applet is revisited in a Web page. Called explicitly via the first call to PApplet.paint(), because PAppletGL needs to have a usable screen befor

()

Source from the content-addressed store, hash-verified

1322 * PAppletGL needs to have a usable screen before getting things rolling.
1323 */
1324 public void start() {
1325// paused = false; // unpause the thread // removing for 3.0a5, don't think we want this here
1326
1327 resume();
1328 handleMethods("resume");
1329 surface.resumeThread();
1330 }
1331
1332
1333 /**

Callers 15

initAnimatorMethod · 0.45
startThreadMethod · 0.45
setFrameRateMethod · 0.45
initMethod · 0.45
startThreadMethod · 0.45
runMethod · 0.45
LineThreadMethod · 0.45
threadMethod · 0.45
attachInterruptMethod · 0.45
ServerMethod · 0.45
ClientMethod · 0.45
handleLaunchMethod · 0.45

Calls 3

resumeMethod · 0.95
handleMethodsMethod · 0.95
resumeThreadMethod · 0.65

Tested by

no test coverage detected