From: Guenter S. <Gue...@ph...> - 2009-09-16 12:08:24
|
The online documentation at http://vpython.org/contents/docs/visual/lights.html says scene.lights is a list, however >>> from visual import * >>> scene = display() >>> print isinstance(scene.lights,list) False >>> print isinstance(scene.lights,tuple) True >>> Guenter |