Processing sketches follow a specific sequence of steps: setup() first, followed by draw() over and over and over again in a loop. A thread is also a series of steps with a beginning, a middle, and an end. A Processing sketch is a single thread, often referred to as the "Animation" thr
(final String name)
| 3505 | * @see PApplet#noLoop() |
| 3506 | */ |
| 3507 | public void thread(final String name) { |
| 3508 | new Thread(() -> method(name)).start(); |
| 3509 | } |
| 3510 | |
| 3511 | |
| 3512 |
no test coverage detected