Releases: vpython/vpython-jupyter
7.6.2pre1
7.6.2beta3
Bruce updated various VPython 7 files, including labextension/src/glocommlab.js. This fixes a bug in setting the depth of a 3D text object, it clamps mousemove event triggers to no more than 60 per second, and it uses more chords per helix turn to improve helix appearance.
Also, he fixed some major bugs in GlowScript VPython in inserting "await" where needed when a function call included arguments such as "a=5".
7.6.2.beta2
Added fixes for zero-length and zero-axis objects.
7.6.2.beta1
7.6.1
Big new feature:
You can now open vpython
windows without opening a web browser (but not on WIndows or Python 3.8 yet)! The default is to still open a browser, but if you prefer, an application window can be opened instead (a bit like the old vpython 5/6 behavior). Thanks to Aaron Titus @atitus for implementing this. [#9 ]
Using it adds only one line to your program, set_browser(type='pyqt')
. A short example:
from vpython import *
set_browser(type='pyqt')
ball=sphere()
Other improvements/fixes
7.6.1.beta12
Fixes conditional that raises error on qt and Python 3.8 or higher
7.6.1.beta11
Issue clearer error message on qt/python 2.8
7.6.1.beta10
Really hope this is the last pre-release....fixes a couple of deprecation warnings about time.clock
7.6.1.beta9
This pre-release incorporates recent glowscript vpython changes
7.6.1.beta8
Remove integrate_selected
; give explicit error on qt/windows.