From: Jonathan B. <jbr...@ea...> - 2006-06-01 18:15:59
|
A Windows-only build of this release is now available on the sourceforge download area. The autotools-based builder will be up on Sourceforge soon for Linux/UNIX/OSX, hopefully later this afternoon or evening. At the time of this writing, the Gtk+ source files are still being uploaded. They form the contents of gtkdev.tar.bz2, and are only there to satisfy the requirements of the LGPL. This archive also includes precompiled binaries, debugging symbols, and utility programs for Gtk+, that make it easier to start hacking on VPython from within Windows. There are still a few problems with the code that I am aware of. At this point the project is in "release early, release often" mode. Please report any problems to the mailing list. The APIs for texturing, transparency, and lighting are still in flux, so please contribute your comments to those as well. RELEASE NOTES: The "Its not vaporware, I swear!" release Note: You do not need to download "gtkdev.tar.bz2" if you don't want to; it is there to satisfy the requirements of the GNU LGPL. This release contains many new features, including: - A toolbar with some simple functions (the recenter button doesn't do anything yet). - New mouse interaction mode "pan", selectable by the user through the toolbar - Most objects support an "alpha" color property, that controls transparency. This also makes foo.color a 4-tuple (RGBA) - Most objects support a "shininess" property, that controls specular highlighting (value between 0 and 1, exactly 0 or 1 disable it) - Most objects can have their lighting explicitly turned off (foo.lit = False) - Simple texturing support (see examples/textest.py) - Advanced lighting support, including spotlights, attenuation, and local (non-infinity) sources (no demo as yet, see help(light)) - Supports integration with other GUI toolkits, such as PyGTK, WxPython, PyObjC, etc (no demo yet) |
From: Jonathan B. <jbr...@ea...> - 2006-06-01 20:03:44
|
On Thu, 2006-06-01 at 14:17 -0400, Jonathan Brandmeyer wrote: > The autotools-based builder will be up on Sourceforge > soon for Linux/UNIX/OSX, hopefully later this afternoon or evening. Its up now. Enjoy! -Jonathan |
From: Jonathan B. <jbr...@ea...> - 2006-06-01 20:13:26
|
In addition to the other new features, feel free to play with frame.scale. -Jonathan |
From: Jonathan B. <jbr...@ea...> - 2006-06-02 17:35:28
|
On Thu, 2006-06-01 at 16:05 -0400, Jonathan Brandmeyer wrote: > On Thu, 2006-06-01 at 14:17 -0400, Jonathan Brandmeyer wrote: > > The autotools-based builder will be up on Sourceforge > > soon for Linux/UNIX/OSX, hopefully later this afternoon or evening. > > Its up now. Enjoy! Someone privately asked where the links to the files are. The releases for this series will be posted to the Sourceforge "files" area for the visualpython project, here: http://sourceforge.net/project/showfiles.php?group_id=6013 Chances are pretty good that if you have a question, someone else will too. Please direct all correspondence about VPython to the mailing list. Thanks, -Jonathan |
From: Gary <pa...@in...> - 2006-06-02 00:31:43
|
Jonathan Brandmeyer wrote: >A Windows-only build of this release is now available on the sourceforge >download area. > Jonathan, In [1]: import visual as v --------------------------------------------------------------------------- exceptions.ImportError Traceback (most recent call last) C:\Documents and Settings\Gary\My Documents\<ipython console> C:\Python24\lib\site-packages\visual\__init__.py 22 23 # Don't try this at home! ---> 24 import array_backend 25 # The following is intended to be equivalent to: 26 # >>> from array_backend.backend[0] import * C:\Python24\lib\site-packages\visual\array_backend.py 2 3 # I am performing the import statements within functions to prevent poll uting the global 4 # namespace 5 def _try_init_numeric(): 6 try: ImportError: DLL load failed: The specified procedure could not be found. Regards, gary |
From: Jonathan B. <jbr...@ea...> - 2006-06-02 23:18:11
|
On Thu, 2006-06-01 at 20:30 -0400, Gary wrote: > Jonathan Brandmeyer wrote: > > >A Windows-only build of this release is now available on the sourceforge > >download area. > > > Jonathan, > > In [1]: import visual as v > --------------------------------------------------------------------------- > exceptions.ImportError Traceback (most > recent call > last) > > C:\Documents and Settings\Gary\My Documents\<ipython console> > > C:\Python24\lib\site-packages\visual\__init__.py > 22 > 23 # Don't try this at home! > ---> 24 import array_backend > 25 # The following is intended to be equivalent to: > 26 # >>> from array_backend.backend[0] import * > > C:\Python24\lib\site-packages\visual\array_backend.py > 2 > 3 # I am performing the import statements within functions to > prevent poll > uting the global > 4 # namespace > 5 def _try_init_numeric(): > 6 try: > > ImportError: DLL load failed: The specified procedure could not be found. OK - I'm seeing this problem on a few people's machines. I'm not quite sure what is causing it, because it isn't a problem on my development machine. If you see this error and have the time to do so, please do the following: Download depends.exe from http://www.dependencywalker.com/ Open site-packages/visual/cvisual.dll from within the program. It should pop up some kind of error that a bunch of libraries cannot be found. Click OK and continue. Select Options->Configure Module Search Order At the bottom of the dialog, type C:\Python24\Lib\site-packages\gtkrun \bin, and click "Add Directory" When asked to refresh the current session, click Yes Let me know all of the errors that remain. If you _don't_ see this error, please let me know which version of Windows you are running, which OpenGL drivers you have installed, and which video card you have installed. Thanks, -Jonathan |
From: Gary <pa...@in...> - 2006-06-03 00:59:25
|
Jonathan Brandmeyer wrote: >On Thu, 2006-06-01 at 20:30 -0400, Gary wrote: > > >>Jonathan Brandmeyer wrote: >> >> >> >>>A Windows-only build of this release is now available on the sourceforge >>>download area. >>> >>> >>> >>Jonathan, >> >>In [1]: import visual as v >>--------------------------------------------------------------------------- >>exceptions.ImportError Traceback (most >>recent call >> last) >> >>C:\Documents and Settings\Gary\My Documents\<ipython console> >> >>C:\Python24\lib\site-packages\visual\__init__.py >> 22 >> 23 # Don't try this at home! >>---> 24 import array_backend >> 25 # The following is intended to be equivalent to: >> 26 # >>> from array_backend.backend[0] import * >> >>C:\Python24\lib\site-packages\visual\array_backend.py >> 2 >> 3 # I am performing the import statements within functions to >>prevent poll >>uting the global >> 4 # namespace >> 5 def _try_init_numeric(): >> 6 try: >> >>ImportError: DLL load failed: The specified procedure could not be found. >> >> > >OK - I'm seeing this problem on a few people's machines. I'm not quite >sure what is causing it, because it isn't a problem on my development >machine. > >If you see this error and have the time to do so, please do the >following: >Download depends.exe from http://www.dependencywalker.com/ >Open site-packages/visual/cvisual.dll from within the program. >It should pop up some kind of error that a bunch of libraries cannot be >found. Click OK and continue. >Select Options->Configure Module Search Order >At the bottom of the dialog, type C:\Python24\Lib\site-packages\gtkrun >\bin, and click "Add Directory" >When asked to refresh the current session, click Yes >Let me know all of the errors that remain. > > In the bottom window: Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module. Warning: At least one delay-load dependency module was not found. Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module. In the window above that one, the following module and error message is at the top of the list. MSJAVA.DLL: Error opening file. The system cannot find the file specified (2). (sounds like greek to me). I'll help anyway I can (including giving you my phone number, if you want) -gary >If you _don't_ see this error, please let me know which version of >Windows you are running, which OpenGL drivers you have installed, and >which video card you have installed. > >Thanks, >-Jonathan > > > >_______________________________________________ >Visualpython-users mailing list >Vis...@li... >https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > |
From: Jonathan B. <jbr...@ea...> - 2006-06-03 16:24:46
|
On Fri, 2006-06-02 at 20:58 -0400, Gary wrote: > Jonathan Brandmeyer wrote: > > > > >If you see this error and have the time to do so, please do the > >following: > >Download depends.exe from http://www.dependencywalker.com/ > >Open site-packages/visual/cvisual.dll from within the program. > >It should pop up some kind of error that a bunch of libraries cannot be > >found. Click OK and continue. > >Select Options->Configure Module Search Order > >At the bottom of the dialog, type C:\Python24\Lib\site-packages\gtkrun > >\bin, and click "Add Directory" > >When asked to refresh the current session, click Yes > >Let me know all of the errors that remain. > > > > > In the bottom window: > > Error: At least one module has an unresolved import due to a missing > export function in an implicitly dependent module. > Warning: At least one delay-load dependency module was not found. > Warning: At least one module has an unresolved import due to a missing > export function in a delay-load dependent module. > > > In the window above that one, the following module and error message is > at the top of the list. > > MSJAVA.DLL: Error opening file. The system cannot find the file > specified (2). This one doesn't matter (at least I don't think so - I've seen it on a lot of other DLL's that work fine too). Are there any other warnings or errors in the next-to-last pane? Thanks, -Jonathan |
From: Gary <pa...@in...> - 2006-06-04 17:29:02
|
Jonathan Brandmeyer wrote: >On Fri, 2006-06-02 at 20:58 -0400, Gary wrote: > > >>Jonathan Brandmeyer wrote: >> >> >> >>>If you see this error and have the time to do so, please do the >>>following: >>>Download depends.exe from http://www.dependencywalker.com/ >>>Open site-packages/visual/cvisual.dll from within the program. >>>It should pop up some kind of error that a bunch of libraries cannot be >>>found. Click OK and continue. >>>Select Options->Configure Module Search Order >>>At the bottom of the dialog, type C:\Python24\Lib\site-packages\gtkrun >>>\bin, and click "Add Directory" >>>When asked to refresh the current session, click Yes >>>Let me know all of the errors that remain. >>> >>> >>> >>> >>In the bottom window: >> >>Error: At least one module has an unresolved import due to a missing >>export function in an implicitly dependent module. >>Warning: At least one delay-load dependency module was not found. >>Warning: At least one module has an unresolved import due to a missing >>export function in a delay-load dependent module. >> >> >>In the window above that one, the following module and error message is >>at the top of the list. >> >>MSJAVA.DLL: Error opening file. The system cannot find the file >>specified (2). >> >> > >This one doesn't matter (at least I don't think so - I've seen it on a >lot of other DLL's that work fine too). Are there any other warnings or >errors in the next-to-last pane? > > No, none at all. Offer of phone call still stands if you think it would help. -gary >Thanks, >-Jonathan > > > >_______________________________________________ >Visualpython-users mailing list >Vis...@li... >https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > |
From: Dr P H B. <P.H...@bh...> - 2006-06-04 21:50:11
|
In message <448...@in...> Gary <pa...@in...> wrote: > Jonathan Brandmeyer wrote: > > >> > >>ImportError: DLL load failed: The specified procedure could not be found. > >> > >> > > > >OK - I'm seeing this problem on a few people's machines. I'm not quite > >sure what is causing it, because it isn't a problem on my development > >machine. > > > >If you _don't_ see this error, please let me know which version of > >Windows you are running, which OpenGL drivers you have installed, and > >which video card you have installed. > > > >Thanks, > >-Jonathan > > > > My error message is : ImportError: DLL load failed: A device attached to the system is not functioning. I am running windows Me Please can you advise on how to find out which Open GL drivers and video cards are installed: my usual sources of information cannot help me on these. Regards Peter -- Dr P H Borcherds |<mailto:P.H...@bh...> |phone 0044 (0)121 475 3029 |