Jonathan Feinberg
Jonathan Feinberg
Because the library ignores the Applet's "dispose" library function, the server websocket is never closed, and it's impossible to run a sketch in Python Mode a second time. The library...
https://github.com/processing/processing/blob/master/core/src/processing/opengl/PSurfaceJOGL.java#L872 https://github.com/processing/processing/blob/master/core/src/processing/opengl/PSurfaceJOGL.java#L877
Builtins that support the with statement should be documented as such. For example ``` python ellipse(0, 50, 33, 33) # Left circle with pushStyle(): strokeWeight(10) fill(204, 153, 0) ellipse(50, 50,...
http://py.processing.org/reference/loadPixels.html SHould have spaces around operators, e.g., `width*height/2` should be `width * height / 2`.