You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
(1) |
Aug
|
Sep
(15) |
Oct
(32) |
Nov
(35) |
Dec
(48) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(46) |
Feb
(22) |
Mar
(65) |
Apr
(49) |
May
(22) |
Jun
(29) |
Jul
(51) |
Aug
(34) |
Sep
(32) |
Oct
(46) |
Nov
(30) |
Dec
(32) |
2002 |
Jan
(48) |
Feb
(4) |
Mar
(20) |
Apr
(28) |
May
(13) |
Jun
(34) |
Jul
(51) |
Aug
(15) |
Sep
(15) |
Oct
(35) |
Nov
(15) |
Dec
(20) |
2003 |
Jan
(31) |
Feb
(111) |
Mar
(41) |
Apr
(28) |
May
(36) |
Jun
(29) |
Jul
(27) |
Aug
(29) |
Sep
(47) |
Oct
(28) |
Nov
(7) |
Dec
(26) |
2004 |
Jan
(44) |
Feb
(9) |
Mar
(17) |
Apr
(26) |
May
(58) |
Jun
(13) |
Jul
(44) |
Aug
(64) |
Sep
(30) |
Oct
(11) |
Nov
(21) |
Dec
(28) |
2005 |
Jan
(29) |
Feb
(11) |
Mar
(11) |
Apr
(22) |
May
(85) |
Jun
(46) |
Jul
(17) |
Aug
(18) |
Sep
(14) |
Oct
(22) |
Nov
(1) |
Dec
(45) |
2006 |
Jan
(20) |
Feb
(36) |
Mar
(18) |
Apr
(24) |
May
(21) |
Jun
(48) |
Jul
(23) |
Aug
(20) |
Sep
(10) |
Oct
(41) |
Nov
(46) |
Dec
(40) |
2007 |
Jan
(40) |
Feb
(20) |
Mar
(13) |
Apr
(6) |
May
(24) |
Jun
(31) |
Jul
(30) |
Aug
(11) |
Sep
(11) |
Oct
(10) |
Nov
(56) |
Dec
(64) |
2008 |
Jan
(64) |
Feb
(22) |
Mar
(63) |
Apr
(28) |
May
(25) |
Jun
(36) |
Jul
(11) |
Aug
(9) |
Sep
(14) |
Oct
(41) |
Nov
(46) |
Dec
(130) |
2009 |
Jan
(95) |
Feb
(41) |
Mar
(24) |
Apr
(35) |
May
(53) |
Jun
(67) |
Jul
(48) |
Aug
(48) |
Sep
(86) |
Oct
(75) |
Nov
(64) |
Dec
(52) |
2010 |
Jan
(57) |
Feb
(31) |
Mar
(28) |
Apr
(40) |
May
(25) |
Jun
(42) |
Jul
(79) |
Aug
(31) |
Sep
(49) |
Oct
(66) |
Nov
(38) |
Dec
(25) |
2011 |
Jan
(29) |
Feb
(18) |
Mar
(44) |
Apr
(6) |
May
(28) |
Jun
(31) |
Jul
(36) |
Aug
(24) |
Sep
(30) |
Oct
(23) |
Nov
(21) |
Dec
(27) |
2012 |
Jan
(14) |
Feb
(11) |
Mar
(2) |
Apr
(48) |
May
(7) |
Jun
(32) |
Jul
(22) |
Aug
(25) |
Sep
(31) |
Oct
(32) |
Nov
(21) |
Dec
(17) |
2013 |
Jan
(44) |
Feb
(27) |
Mar
(3) |
Apr
(1) |
May
|
Jun
|
Jul
(3) |
Aug
(4) |
Sep
(1) |
Oct
(7) |
Nov
(5) |
Dec
(5) |
2014 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
(2) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bruce S. <Bru...@nc...> - 2009-11-14 04:28:35
|
VPython implements a second "rendering" thread which about 25 times per second interrupts your computations to create a 3D image (using OpenGL) from the current attributes of the objects, and the current (mouse-determined) "camera" viewing angle. A complete rendering is done each time (25 per second) even if no object has changed nor the camera has moved. For this reason performance with very large numbers of objects is likely to be poor, but it's easy enough to test simply by creating a very large number of objects. You could make the window invisible while computing, so as not to be interrupted by rendering, but once you make the window visible you may see poor performance for zooming and rotating. The cheapest object to render is "points" which makes 2D disks or squares positioned at 3D locations. It is moreover an array object, with a list for the positions of the points. Please say more about your question regarding zoom and rotate. What is "wild" about using the mouse to rotate or zoom the camera for looking at the scene? There is documentation on mouse manipulations in the Visual help available on the Help menu in IDLE. Under Windows, Events, & Files see Mouse Events. Also, in the contributed section of vpython.org are some example programs that do fancy things with the mouse. And see the Tutorial on the first page of the help for the basics on using the mouse to zoom and rotate. Bruce Sherwood Tim Smith (25121) wrote: > 1. Can vpython handle large datasets? I’m considering using it for > a project modelling a large geographical body, I might need to plot > 1,000,000 points or more. > > 2. What would be the best object to use ? > > 3. Is there a tutorial on mouse manipulation so I can zoom in and > out and rotate my object? The default behaviour seems a bit wild |
From: Tim S. (25121) <tk...@mi...> - 2009-11-14 01:19:43
|
1. Can vpython handle large datasets? I'm considering using it for a project modelling a large geographical body, I might need to plot 1,000,000 points or more. 2. What would be the best object to use ? 3. Is there a tutorial on mouse manipulation so I can zoom in and out and rotate my object? The default behaviour seems a bit wild ********************************************************************** IMPORTANT - This email and any attachments may contain confidential or privileged information intended solely for the intended recipient and / or copyrighted material. If you are not the intended recipient you must not use, interfere with, disclose, copy or take any action with reliance on this email or any part of it. If you have received this email in error please advise the sender via return email and delete or destroy all copies of this email and attachments. Any claim to confidentiality or privilege is not waived or lost by reason of mistaken transmission of this message. Any unauthorised use, copying or distribution is prohibited. Minara Resources Limited does not warrant that this email or any attachments are free of viruses and cannot guarantee the accuracy, reliability or completeness of this email and any attachments. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.clearswift.com ********************************************************************** |
From: TH C. <teo...@gm...> - 2009-11-12 15:41:57
|
Executing one of my VPython script in terminal give me this: teonghan@asspire:~/Documents/2009/thesis/code_thesis/vpython$ python y-golay.py (<unknown>:3073): GdkGLExt-WARNING **: Cannot open \xe8\u0002\xc7\u0008L.so (<unknown>:3073): GdkGLExt-WARNING **: Cannot open \xe8\u0002\xc7\u0008L.so glibmm-ERROR **: unhandled exception (type std::exception) in signal handler: what: Unable to get extension function: glCreateProgramObjectARB even though the extension is advertised. aborting... Aborted On Thu, Nov 12, 2009 at 11:05 PM, TH Chew <teo...@gm...> wrote: > I mean I can't get my VPython working. Sorry for typo. > > > On Thu, Nov 12, 2009 at 11:04 PM, TH Chew <teo...@gm...> wrote: > >> Dear Guy, >> >> I have try those steps you mentioned but I still can get my VPython >> working. After I run my Python script in idle, it just show a RESTART line >> and did nothing. Am I missing something? I install VPython using the >> repository, not compiling the source. >> >> >> On Thu, Nov 12, 2009 at 5:08 AM, Guy K. Kloss <g....@ma...>wrote: >> >>> If anybody has got probs with the process of what a PPA is and how to use >>> it >>> for this purpose: Drop a line. >>> >>> If not, I won't have to elaborate too much ... :) >>> >>> Guy >>> >>> -- >>> Guy K. Kloss >>> Institute of Information and Mathematical Sciences >>> Te Kura Pūtaiao o Mōhiohio me Pāngarau >>> Massey University, Albany (North Shore City, Auckland) >>> 473 State Highway 17, Gate 1, Mailroom, Quad B Building >>> voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 >>> G....@ma... http://www.massey.ac.nz/~gkloss<http://www.massey.ac.nz/%7Egkloss> >>> >>> >>> ------------------------------------------------------------------------------ >>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >>> 30-Day >>> trial. Simplify your report design, integration and deployment - and >>> focus on >>> what you do best, core application coding. Discover what's new with >>> Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> _______________________________________________ >>> Visualpython-users mailing list >>> Vis...@li... >>> https://lists.sourceforge.net/lists/listinfo/visualpython-users >>> >> >> >> >> -- >> Regards, >> THChew >> > > > > -- > Regards, > THChew > -- Regards, THChew |
From: TH C. <teo...@gm...> - 2009-11-12 15:05:42
|
I mean I can't get my VPython working. Sorry for typo. On Thu, Nov 12, 2009 at 11:04 PM, TH Chew <teo...@gm...> wrote: > Dear Guy, > > I have try those steps you mentioned but I still can get my VPython > working. After I run my Python script in idle, it just show a RESTART line > and did nothing. Am I missing something? I install VPython using the > repository, not compiling the source. > > > On Thu, Nov 12, 2009 at 5:08 AM, Guy K. Kloss <g....@ma...>wrote: > >> If anybody has got probs with the process of what a PPA is and how to use >> it >> for this purpose: Drop a line. >> >> If not, I won't have to elaborate too much ... :) >> >> Guy >> >> -- >> Guy K. Kloss >> Institute of Information and Mathematical Sciences >> Te Kura Pūtaiao o Mōhiohio me Pāngarau >> Massey University, Albany (North Shore City, Auckland) >> 473 State Highway 17, Gate 1, Mailroom, Quad B Building >> voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 >> G....@ma... http://www.massey.ac.nz/~gkloss<http://www.massey.ac.nz/%7Egkloss> >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and focus >> on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> > > > > -- > Regards, > THChew > -- Regards, THChew |
From: TH C. <teo...@gm...> - 2009-11-12 15:05:03
|
Dear Guy, I have try those steps you mentioned but I still can get my VPython working. After I run my Python script in idle, it just show a RESTART line and did nothing. Am I missing something? I install VPython using the repository, not compiling the source. On Thu, Nov 12, 2009 at 5:08 AM, Guy K. Kloss <g....@ma...> wrote: > If anybody has got probs with the process of what a PPA is and how to use > it > for this purpose: Drop a line. > > If not, I won't have to elaborate too much ... :) > > Guy > > -- > Guy K. Kloss > Institute of Information and Mathematical Sciences > Te Kura Pūtaiao o Mōhiohio me Pāngarau > Massey University, Albany (North Shore City, Auckland) > 473 State Highway 17, Gate 1, Mailroom, Quad B Building > voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 > G....@ma... http://www.massey.ac.nz/~gkloss<http://www.massey.ac.nz/%7Egkloss> > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > -- Regards, THChew |
From: Guy K. K. <g....@ma...> - 2009-11-11 21:08:42
|
If anybody has got probs with the process of what a PPA is and how to use it for this purpose: Drop a line. If not, I won't have to elaborate too much ... :) Guy -- Guy K. Kloss Institute of Information and Mathematical Sciences Te Kura Pūtaiao o Mōhiohio me Pāngarau Massey University, Albany (North Shore City, Auckland) 473 State Highway 17, Gate 1, Mailroom, Quad B Building voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 G....@ma... http://www.massey.ac.nz/~gkloss |
From: Bruce S. <Bru...@nc...> - 2009-11-11 19:52:24
|
I have a vague recollection of some problem being reported with using VPython in the Python(xy) distribution (www.pythonxy.com). I couldn't find anything in the VPython mailing list archives, but doing a search for "Python(xy)" just gave results for Python, which wasn't helpful. Can anyone enlighten me on this? I just did the experiment of installing Python(xy) on Windows, and it comes with a working version of Visual 5.13 and even has VIDLE, though it is defective in missing the crucial startup file idle.pyw. Bruce Sherwood |
From: Guy K. K. <g....@ma...> - 2009-11-11 19:46:59
|
Hello all, good news! Andrew has tracked down a fix by backporting a patch from Boost.Python's Py3k development to the current Boost 1.38 libraries as they're present in the current Ubuntu release (Karmic, 9.10). Notes can be found here: https://bugs.launchpad.net/ubuntu/+source/boost1.38/+bug/457688 So for now the fix is as easy as adding the PPA to your system and doing an upgrade: $ sudo add-apt-repository ppa:ajmitch $ sudo aptitude update $ sudo aptitude full-upgrade As far as I got it, this patched version is also supposed to make it into the bug fixes for the running Ubuntu release, so that it should be usable by some point of time from the normal repositories. Let me know if you should still encounter somewhere any other misalignments with the python-visual or Boost packages regarding this issue. Or even better, add a comment to the bug under the URL above. Guy (a happy Visual camper again) -- Guy K. Kloss Institute of Information and Mathematical Sciences Te Kura Pūtaiao o Mōhiohio me Pāngarau Massey University, Albany (North Shore City, Auckland) 473 State Highway 17, Gate 1, Mailroom, Quad B Building voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 G....@ma... http://www.massey.ac.nz/~gkloss |
From: Guy K. K. <g....@ma...> - 2009-11-08 22:15:35
|
On Mon, 09 Nov 2009 10:55:55 Anders Wallin wrote: > is there any news or progress on how to get visual to run on Ubuntu 9.10 ? No, not really, but ... I've attended Kiwi PyCon [1] this weekend, and met quite a few Launchpad/Ubuntu developers there. The bug responsible for the mis-behaviour [2] has just been promoted to importance level "high", so it is likely to be fixed during the life time of Karmic, rather than waiting for 10.04. Having said that, they're trying to dig through the current Boost.Python SVN working branch to pick out the change that made Boost work again, and backport a patch to the current deployed stable version 1.38. So, let's keep our fingers crossed so that things will start working again soon. Guy PS: BTW, side note from the Canonical developers @ Kiwi PyCon: If something's not up to your needs, and you want to get attention from the Ubuntu teams, file a bug report on Launchpad. They *do not* listen in on rants on the Ubuntu forums, as they're swamped with bug and enhancement requests already, and the bug tracker is the only thing they can possibly manage without losing their sanity. [1] http://nz.pycon.org [2] https://bugs.launchpad.net/ubuntu/+source/boost1.38/+bug/457688 -- Guy K. Kloss Institute of Information and Mathematical Sciences Te Kura Pūtaiao o Mōhiohio me Pāngarau Massey University, Albany (North Shore City, Auckland) 473 State Highway 17, Gate 1, Mailroom, Quad B Building voice: +64 9 414-0800 ext. 9585 fax: +64 9 441-8181 G....@ma... http://www.massey.ac.nz/~gkloss |
From: Anders W. <and...@gm...> - 2009-11-08 21:56:08
|
> > This is a somewhat known issue with latest revisions of vpython on every > distribution I use and looks like windows as well. > Unknown cause yet, but seems to be rooted in the newest versions of Boost. > is there any news or progress on how to get visual to run on Ubuntu 9.10 ? AW |
From: TH C. <teo...@gm...> - 2009-11-03 02:35:48
|
Thanks for the feedback. I have been trying with a clean Karmic installation in virtualbox. Still the same problem. Will look around whether got other ways of running VPython in Karmic or not. Thanks again. On Sun, Nov 1, 2009 at 11:15 PM, Bruce Sherwood <Bru...@nc...>wrote: > I'm not absolutely certain of this, but I think this comes from using > Boost libraries with Python 2.5 that were built for Python 2.6. > > Bruce Sherwood > > TH Chew wrote: > > Hi all, > > > > I have been following the efforts of trying to get VPython run in Karmic > > using the default Python and Boost libraries. I am trying to get it > > working too but failed. Anyway, I try to use Python 2.5 to compile the > > source as I was able to do that in Jaunty. However, the make process > > failed. The last 2 lines of build.log are: > > > > /usr/bin/ld: cannot find -lboost_python > > collect2: ld returned 1 exit status > > > > I tried compiling version 5.13 and 5.11. The results are the same. > > Thanks in advance. > > > > -- > > Regards, > > THChew > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > -- Regards, THChew |
From: xingran x. <xxi...@gm...> - 2009-11-03 02:02:07
|
Hi, all My application is to visualize some user-input data. Users upload data files through the web interface, I need to visualize the data and render it in a Web page, I do not need the interaction ability of vpython(like drag, zoom...etc), a basic visualization is enough, sort-of like a screenshot of the initial view of Vpython visualization...but since it is a Web application, I need to do it programatically. Any input will be greatly appreciated, thanks! Best Ran |
From: Bruce S. <Bru...@nc...> - 2009-11-01 15:15:54
|
I'm not absolutely certain of this, but I think this comes from using Boost libraries with Python 2.5 that were built for Python 2.6. Bruce Sherwood TH Chew wrote: > Hi all, > > I have been following the efforts of trying to get VPython run in Karmic > using the default Python and Boost libraries. I am trying to get it > working too but failed. Anyway, I try to use Python 2.5 to compile the > source as I was able to do that in Jaunty. However, the make process > failed. The last 2 lines of build.log are: > > /usr/bin/ld: cannot find -lboost_python > collect2: ld returned 1 exit status > > I tried compiling version 5.13 and 5.11. The results are the same. > Thanks in advance. > > -- > Regards, > THChew |
From: TH C. <teo...@gm...> - 2009-11-01 09:20:41
|
Hi all, I have been following the efforts of trying to get VPython run in Karmic using the default Python and Boost libraries. I am trying to get it working too but failed. Anyway, I try to use Python 2.5 to compile the source as I was able to do that in Jaunty. However, the make process failed. The last 2 lines of build.log are: /usr/bin/ld: cannot find -lboost_python collect2: ld returned 1 exit status I tried compiling version 5.13 and 5.11. The results are the same. Thanks in advance. -- Regards, THChew |
From: Bruce S. <Bru...@nc...> - 2009-10-27 21:09:56
|
No, there is no option for this. Bruce Sherwood Nathaniel Troutman wrote: > > Is there any way to disable the culling that happens when transparency > is enabled? I understand that culling goes on for performance reasons, > but in the case of transparent objects it can remove substantial > portions of the objects. > > -- Nathaniel |
From: Nathaniel T. <loc...@ya...> - 2009-10-27 19:34:00
|
Is there any way to disable the culling that happens when transparency is enabled? I understand that culling goes on for performance reasons, but in the case of transparent objects it can remove substantial portions of the objects. -- Nathaniel |
From: Scott D. D. <Sco...@Ac...> - 2009-10-27 13:52:04
|
Guy K. Kloss wrote: > On Wed, 21 Oct 2009 20:29:28 Scott David Daniels wrote: >> There is a 2.6.4 coming out, you could check release candidate 2.6.4rc2 > Karmic is on 2.6.4 already. Didn't work with that one. I'm assuming that some > incompatible changes were made, and Boost trips up over them. According to http://mail.python.org/pipermail/python-dev/2009-October/093188.html the problem may be fixed by moving to the very most recent Boost (the __doc__ property of a class is no longer writable). If that's not it, that entire thread may have clues that help this work. --Scott David Daniels Sco...@Ac... |
From: Bruce S. <Bru...@nc...> - 2009-10-26 23:36:48
|
There is nothing built-in. On most platforms there is a way to capture a bitmap of a window. For example, on Windows highlight the window of interest and press Alt-Print Screen, then paste into some application such as Word. For high-resolution images, see the discussion about povexport in the FAQ section of the Documentation section of vpython.org. Bruce Sherwood xingran xue wrote: > Hi, list. > > How to export the Vpython view into jpg file, is there any build-in > function to do this? I am trying to publish a web-site and I using > vpython as the background-processing program. So, is there any proper > way to display the result. > > > Best > Ran |
From: xingran x. <xxi...@gm...> - 2009-10-26 22:41:03
|
Hi, list. How to export the Vpython view into jpg file, is there any build-in function to do this? I am trying to publish a web-site and I using vpython as the background-processing program. So, is there any proper way to display the result. Best Ran |
From: Bruce S. <Bru...@nc...> - 2009-10-23 14:15:02
|
Aargh. I too am plagued by typos. Of course what I meant was "Python in going from 2.6.2 to 2.6.3". Bruce Sherwood Bruce Sherwood wrote: > Because Visual at present cannot work with Python 2.6.3 (due to changes in > Python in going from 2.6.2 to 2.6.2) I've placed on the download pages at > vpython.org the advice to use 2.6.2. I'm guessing that there's a typo in the > final comment "I was able to import visual in 2.6.3 with no errors." Presumably > what was meant was "I was able to import visual in 2.6.2 with no errors." > > Bruce Sherwood > > Tony Risinger wrote: >> What is known so far is in this bug report and all the links therein: >> >> https://bugs.launchpad.net/ubuntu/+source/boost1.38/+bug/457688 >> >> There seems to be some incompatibility with python 2.6.3 and boost >> python 1.38-1.40; many projects utilizing python boost seem to be >> experiencing this. >> >> You may have had an older version of boost that later got updated. I >> have confirmed that using the trunk version of boost fixes this, >> although in windows you may need to downgrade boost to pre 1.38 (I >> believe this is where the regression occured but it may have been 1.39) >> >> On Oct 22, 2009, at 11:47 PM, "Bryant Mitol" <bm...@ya...> wrote: >> >>> Greetings: >>> I am just getting started in Python and consiquently have many >>> modules etc installed, not knowing what I really need. I had just >>> discovered how to get eric4 and Vpython 5.13 installed using Python >>> 2.6.3. On the 20th I was able to run the begining tutorials which >>> included the import visual line with no problems. Last night I ended >>> up with the object attribute error. >>> >>> Traceback (most recent call last): >>> File "<pyshell#0>", line 1 >>> from visual import * >>> File "C:\Python26\lib\site-packages\visual\__init__.py", line 59 >>> import cvisual >>> AttributeError: 'Boost.Python.StaticProperty' object attribute >>> '__doc__' >>> is read-only >>> >>> What had occured between was the installation/uninstall of an >>> ACAD2010 trial package that included the C++ 2008 redidstribution >>> package and updates. I already have Vstudio 2005. Also cmake 2.6 was >>> installed. I have removed the C++ redistribution packages and the >>> ACAD program and reinstalled all my python packages but am still >>> unable to import visual. I dont know if any of this provides clues >>> but I was able to import visual in 2.6.3 with no errors. >>> >>> Happy Trails >>> Bryant >>> --- >>> --- >>> --- >>> --------------------------------------------------------------------- >>> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >>> is the only developer event you need to attend this year. Jumpstart >>> your >>> developing skills, take BlackBerry mobile applications to market and >>> stay >>> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >>> http://p.sf.net/sfu/devconference >>> _______________________________________________ >>> Visualpython-users mailing list >>> Vis...@li... >>> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> Tony Risinger >> Application Development Specialist >> Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 >> >> To...@Br... >> >> http://www.brokerbin.com/ >> >> CONFIDENTIAL INFORMATION: This electronic mail message and any attached files contain information intended for the exclusive use of the specific individual(s) or entity(s) to whom it is addressed and may contain information that is propriety, privileged or confidential or otherwise exempt from disclosure. If you are not the intended recipient, please notify the sender immediately, by reply electronic mail or by telephone, of any unintended recipients so we may correct our records. Also, delete the original electronic mail and any attachments without making any copies of the electronic mail message or attachments. >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Bruce S. <Bru...@nc...> - 2009-10-23 13:58:20
|
Because Visual at present cannot work with Python 2.6.3 (due to changes in Python in going from 2.6.2 to 2.6.2) I've placed on the download pages at vpython.org the advice to use 2.6.2. I'm guessing that there's a typo in the final comment "I was able to import visual in 2.6.3 with no errors." Presumably what was meant was "I was able to import visual in 2.6.2 with no errors." Bruce Sherwood Tony Risinger wrote: > What is known so far is in this bug report and all the links therein: > > https://bugs.launchpad.net/ubuntu/+source/boost1.38/+bug/457688 > > There seems to be some incompatibility with python 2.6.3 and boost > python 1.38-1.40; many projects utilizing python boost seem to be > experiencing this. > > You may have had an older version of boost that later got updated. I > have confirmed that using the trunk version of boost fixes this, > although in windows you may need to downgrade boost to pre 1.38 (I > believe this is where the regression occured but it may have been 1.39) > > On Oct 22, 2009, at 11:47 PM, "Bryant Mitol" <bm...@ya...> wrote: > >> Greetings: >> I am just getting started in Python and consiquently have many >> modules etc installed, not knowing what I really need. I had just >> discovered how to get eric4 and Vpython 5.13 installed using Python >> 2.6.3. On the 20th I was able to run the begining tutorials which >> included the import visual line with no problems. Last night I ended >> up with the object attribute error. >> >> Traceback (most recent call last): >> File "<pyshell#0>", line 1 >> from visual import * >> File "C:\Python26\lib\site-packages\visual\__init__.py", line 59 >> import cvisual >> AttributeError: 'Boost.Python.StaticProperty' object attribute >> '__doc__' >> is read-only >> >> What had occured between was the installation/uninstall of an >> ACAD2010 trial package that included the C++ 2008 redidstribution >> package and updates. I already have Vstudio 2005. Also cmake 2.6 was >> installed. I have removed the C++ redistribution packages and the >> ACAD program and reinstalled all my python packages but am still >> unable to import visual. I dont know if any of this provides clues >> but I was able to import visual in 2.6.3 with no errors. >> >> Happy Trails >> Bryant >> --- >> --- >> --- >> --------------------------------------------------------------------- >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart >> your >> developing skills, take BlackBerry mobile applications to market and >> stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > Tony Risinger > Application Development Specialist > Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 > > To...@Br... > > http://www.brokerbin.com/ > > CONFIDENTIAL INFORMATION: This electronic mail message and any attached files contain information intended for the exclusive use of the specific individual(s) or entity(s) to whom it is addressed and may contain information that is propriety, privileged or confidential or otherwise exempt from disclosure. If you are not the intended recipient, please notify the sender immediately, by reply electronic mail or by telephone, of any unintended recipients so we may correct our records. Also, delete the original electronic mail and any attachments without making any copies of the electronic mail message or attachments. > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users |
From: Tony R. <To...@br...> - 2009-10-23 05:15:22
|
What is known so far is in this bug report and all the links therein: https://bugs.launchpad.net/ubuntu/+source/boost1.38/+bug/457688 There seems to be some incompatibility with python 2.6.3 and boost python 1.38-1.40; many projects utilizing python boost seem to be experiencing this. You may have had an older version of boost that later got updated. I have confirmed that using the trunk version of boost fixes this, although in windows you may need to downgrade boost to pre 1.38 (I believe this is where the regression occured but it may have been 1.39) On Oct 22, 2009, at 11:47 PM, "Bryant Mitol" <bm...@ya...> wrote: > Greetings: > I am just getting started in Python and consiquently have many > modules etc installed, not knowing what I really need. I had just > discovered how to get eric4 and Vpython 5.13 installed using Python > 2.6.3. On the 20th I was able to run the begining tutorials which > included the import visual line with no problems. Last night I ended > up with the object attribute error. > > Traceback (most recent call last): > File "<pyshell#0>", line 1 > from visual import * > File "C:\Python26\lib\site-packages\visual\__init__.py", line 59 > import cvisual > AttributeError: 'Boost.Python.StaticProperty' object attribute > '__doc__' > is read-only > > What had occured between was the installation/uninstall of an > ACAD2010 trial package that included the C++ 2008 redidstribution > package and updates. I already have Vstudio 2005. Also cmake 2.6 was > installed. I have removed the C++ redistribution packages and the > ACAD program and reinstalled all my python packages but am still > unable to import visual. I dont know if any of this provides clues > but I was able to import visual in 2.6.3 with no errors. > > Happy Trails > Bryant > --- > --- > --- > --------------------------------------------------------------------- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users Tony Risinger Application Development Specialist Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 To...@Br... http://www.brokerbin.com/ CONFIDENTIAL INFORMATION: This electronic mail message and any attached files contain information intended for the exclusive use of the specific individual(s) or entity(s) to whom it is addressed and may contain information that is propriety, privileged or confidential or otherwise exempt from disclosure. If you are not the intended recipient, please notify the sender immediately, by reply electronic mail or by telephone, of any unintended recipients so we may correct our records. Also, delete the original electronic mail and any attachments without making any copies of the electronic mail message or attachments. |
From: Bryant M. <bm...@ya...> - 2009-10-23 04:45:20
|
Greetings: I am just getting started in Python and consiquently have many modules etc installed, not knowing what I really need. I had just discovered how to get eric4 and Vpython 5.13 installed using Python 2.6.3. On the 20th I was able to run the begining tutorials which included the import visual line with no problems. Last night I ended up with the object attribute error. Traceback (most recent call last): File "<pyshell#0>", line 1 from visual import * File "C:\Python26\lib\site-packages\visual\__init__.py", line 59 import cvisual AttributeError: 'Boost.Python.StaticProperty' object attribute '__doc__' is read-only What had occured between was the installation/uninstall of an ACAD2010 trial package that included the C++ 2008 redidstribution package and updates. I already have Vstudio 2005. Also cmake 2.6 was installed. I have removed the C++ redistribution packages and the ACAD program and reinstalled all my python packages but am still unable to import visual. I dont know if any of this provides clues but I was able to import visual in 2.6.3 with no errors. Happy Trails Bryant |
From: Tony R. <To...@br...> - 2009-10-23 00:06:05
|
Actually now that I think about it, frames with the ability to locally scale their axes might be pretty cool and useful... On Oct 22, 2009, at 7:03 PM, "Tony Risinger" <To...@br...> wrote: > Well I know we can't smash the two togeter as is, but maybe accounting > for the scale so they can coexist on the same display, or putting 2D > nonrotational stuff in an "overlay" that is glued to the viewport, > with points translatable to their respective axes in the 3D part. > > I'm not sure I said it very elegantly, but this is somewhat how I'm > implementing a HUD in my own log visualizer app; I have a dedicated > "viewport" frame that gets moved and objects scaled as the camera > moves so they always appear stationary, or I put everything into > frames and the global frame becomes the overlay. > > I posted awhile back about an arbitrary frame transformation routine > and this is how I'm using it. Seems like 2D stuff could be added like > this, but would additionally need to remember any scale factors > between an object and the global frame so the points could be > translated. > > On Oct 22, 2009, at 4:23 PM, "Bruce Sherwood" > <Bru...@nc...> wrote: > >> It's VERY tough to make 3d stuff work harmoniously with a 2D graph >> that has >> different x and y scale factors. Think for a moment about what an >> arrow object >> would look like. Spheres aren't bad, they just turn into ellipses. >> But even a >> simple box whose axis is not along x, y, or z is going to be >> bizarrely distorted. >> >> Bruce Sherwood >> >> Tony Risinger wrote: >>> I second the HUD stuff, i've been working on various data >>> visualizers >>> and text is difficult to keep stationary. Maybe a "pin" method of >>> sorts that glues labels/etc to the viewport rather than space? >>> >>> Also what about gdisplays? I was slightly dissapointed when I >>> couldn't >>> have a graph and 3d stuff in the same window, would had made some >>> parts of my engine simpler. Is there some way to do that? I know >>> the >>> scale factors are differnent and I haven't looked at the >>> implementation, just thoughts. >>> >>> On Oct 22, 2009, at 3:08 PM, "Anders Wallin" <and...@gm... >>>> wrote: >>> >>>>> Hello, >>>>> I've poored through the documentation and googled it several >>>>> times, >>>>> but I >>>>> can't find anyway to enable wireframe drawing. Since I've worked >>>>> with OpenGL >>>>> I'm pretty sure that it would be easy to implement, >>>> I would also be interested in this, particularly for 'faces' >>>> objects. >>>> >>>> while I'm daydreaming, the lack of these three features almost >>>> makes >>>> me write my own OpenGL wrapper: >>>> - screenshots (I now got imagemagick's 'import' to work, but it's >>>> quite slow) >>>> - wireframe mode ('faces' objects which I draw based on STL files) >>>> - on-screen or 'HUD'-type text drawing (Is this already >>>> implemented?) >>>> >>>> >>>> AW >>>> >>>> --- >>>> --- >>>> --- >>>> --- >>>> ------------------------------------------------------------------ >>>> Come build with us! The BlackBerry(R) Developer Conference in SF, >>>> CA >>>> is the only developer event you need to attend this year. Jumpstart >>>> your >>>> developing skills, take BlackBerry mobile applications to market >>>> and >>>> stay >>>> ahead of the curve. Join us from November 9 - 12, 2009. Register >>>> now! >>>> http://p.sf.net/sfu/devconference >>>> _______________________________________________ >>>> Visualpython-users mailing list >>>> Vis...@li... >>>> https://lists.sourceforge.net/lists/listinfo/visualpython-users >>>> >>>> >>> >>> >>> Tony Risinger >>> Application Development Specialist >>> Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 >>> >>> To...@Br... >>> >>> http://www.brokerbin.com/ >>> >>> CONFIDENTIAL INFORMATION: This electronic mail message and any >>> attached files contain information intended for the exclusive use >>> of the specific individual(s) or entity(s) to whom it is addressed >>> and may contain information that is propriety, privileged or >>> confidential or otherwise exempt from disclosure. If you are not >>> the intended recipient, please notify the sender immediately, by >>> reply electronic mail or by telephone, of any unintended recipients >>> so we may correct our records. Also, delete the original electronic >>> mail and any attachments without making any copies of the >>> electronic mail message or attachments. >>> >>> --- >>> --- >>> --- >>> --- >>> ------------------------------------------------------------------ >>> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >>> is the only developer event you need to attend this year. Jumpstart >>> your >>> developing skills, take BlackBerry mobile applications to market >>> and stay >>> ahead of the curve. Join us from November 9 - 12, 2009. Register >>> now! >>> http://p.sf.net/sfu/devconference >>> _______________________________________________ >>> Visualpython-users mailing list >>> Vis...@li... >>> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> --- >> --- >> --- >> --------------------------------------------------------------------- >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart >> your >> developing skills, take BlackBerry mobile applications to market and >> stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users >> >> > > > Tony Risinger > Application Development Specialist > Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 > > To...@Br... > > http://www.brokerbin.com/ > > CONFIDENTIAL INFORMATION: This electronic mail message and any > attached files contain information intended for the exclusive use of > the specific individual(s) or entity(s) to whom it is addressed and > may contain information that is propriety, privileged or > confidential or otherwise exempt from disclosure. If you are not the > intended recipient, please notify the sender immediately, by reply > electronic mail or by telephone, of any unintended recipients so we > may correct our records. Also, delete the original electronic mail > and any attachments without making any copies of the electronic mail > message or attachments. > > --- > --- > --- > --------------------------------------------------------------------- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > > > > Tony Risinger > Application Development Specialist > Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 > > To...@Br... > > http://www.brokerbin.com/ > > CONFIDENTIAL INFORMATION: This electronic mail message and any > attached files contain information intended for the exclusive use of > the specific individual(s) or entity(s) to whom it is addressed and > may contain information that is propriety, privileged or > confidential or otherwise exempt from disclosure. If you are not the > intended recipient, please notify the sender immediately, by reply > electronic mail or by telephone, of any unintended recipients so we > may correct our records. Also, delete the original electronic mail > and any attachments without making any copies of the electronic mail > message or attachments. Tony Risinger Application Development Specialist Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 To...@Br... http://www.brokerbin.com/ CONFIDENTIAL INFORMATION: This electronic mail message and any attached files contain information intended for the exclusive use of the specific individual(s) or entity(s) to whom it is addressed and may contain information that is propriety, privileged or confidential or otherwise exempt from disclosure. If you are not the intended recipient, please notify the sender immediately, by reply electronic mail or by telephone, of any unintended recipients so we may correct our records. Also, delete the original electronic mail and any attachments without making any copies of the electronic mail message or attachments. |
From: Tony R. <To...@br...> - 2009-10-23 00:01:37
|
Well I know we can't smash the two togeter as is, but maybe accounting for the scale so they can coexist on the same display, or putting 2D nonrotational stuff in an "overlay" that is glued to the viewport, with points translatable to their respective axes in the 3D part. I'm not sure I said it very elegantly, but this is somewhat how I'm implementing a HUD in my own log visualizer app; I have a dedicated "viewport" frame that gets moved and objects scaled as the camera moves so they always appear stationary, or I put everything into frames and the global frame becomes the overlay. I posted awhile back about an arbitrary frame transformation routine and this is how I'm using it. Seems like 2D stuff could be added like this, but would additionally need to remember any scale factors between an object and the global frame so the points could be translated. On Oct 22, 2009, at 4:23 PM, "Bruce Sherwood" <Bru...@nc...> wrote: > It's VERY tough to make 3d stuff work harmoniously with a 2D graph > that has > different x and y scale factors. Think for a moment about what an > arrow object > would look like. Spheres aren't bad, they just turn into ellipses. > But even a > simple box whose axis is not along x, y, or z is going to be > bizarrely distorted. > > Bruce Sherwood > > Tony Risinger wrote: >> I second the HUD stuff, i've been working on various data visualizers >> and text is difficult to keep stationary. Maybe a "pin" method of >> sorts that glues labels/etc to the viewport rather than space? >> >> Also what about gdisplays? I was slightly dissapointed when I >> couldn't >> have a graph and 3d stuff in the same window, would had made some >> parts of my engine simpler. Is there some way to do that? I know >> the >> scale factors are differnent and I haven't looked at the >> implementation, just thoughts. >> >> On Oct 22, 2009, at 3:08 PM, "Anders Wallin" <and...@gm... >>> wrote: >> >>>> Hello, >>>> I've poored through the documentation and googled it several times, >>>> but I >>>> can't find anyway to enable wireframe drawing. Since I've worked >>>> with OpenGL >>>> I'm pretty sure that it would be easy to implement, >>> I would also be interested in this, particularly for 'faces' >>> objects. >>> >>> while I'm daydreaming, the lack of these three features almost makes >>> me write my own OpenGL wrapper: >>> - screenshots (I now got imagemagick's 'import' to work, but it's >>> quite slow) >>> - wireframe mode ('faces' objects which I draw based on STL files) >>> - on-screen or 'HUD'-type text drawing (Is this already >>> implemented?) >>> >>> >>> AW >>> >>> --- >>> --- >>> --- >>> --- >>> ------------------------------------------------------------------ >>> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >>> is the only developer event you need to attend this year. Jumpstart >>> your >>> developing skills, take BlackBerry mobile applications to market and >>> stay >>> ahead of the curve. Join us from November 9 - 12, 2009. Register >>> now! >>> http://p.sf.net/sfu/devconference >>> _______________________________________________ >>> Visualpython-users mailing list >>> Vis...@li... >>> https://lists.sourceforge.net/lists/listinfo/visualpython-users >>> >>> >> >> >> Tony Risinger >> Application Development Specialist >> Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 >> >> To...@Br... >> >> http://www.brokerbin.com/ >> >> CONFIDENTIAL INFORMATION: This electronic mail message and any >> attached files contain information intended for the exclusive use >> of the specific individual(s) or entity(s) to whom it is addressed >> and may contain information that is propriety, privileged or >> confidential or otherwise exempt from disclosure. If you are not >> the intended recipient, please notify the sender immediately, by >> reply electronic mail or by telephone, of any unintended recipients >> so we may correct our records. Also, delete the original electronic >> mail and any attachments without making any copies of the >> electronic mail message or attachments. >> >> --- >> --- >> --- >> --------------------------------------------------------------------- >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart >> your >> developing skills, take BlackBerry mobile applications to market >> and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> Visualpython-users mailing list >> Vis...@li... >> https://lists.sourceforge.net/lists/listinfo/visualpython-users > > --- > --- > --- > --------------------------------------------------------------------- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Visualpython-users mailing list > Vis...@li... > https://lists.sourceforge.net/lists/listinfo/visualpython-users > > Tony Risinger Application Development Specialist Tel: 507-535-7563 | Fax: 507-292-5747 | Toll Free: 866-241-0639 To...@Br... http://www.brokerbin.com/ CONFIDENTIAL INFORMATION: This electronic mail message and any attached files contain information intended for the exclusive use of the specific individual(s) or entity(s) to whom it is addressed and may contain information that is propriety, privileged or confidential or otherwise exempt from disclosure. If you are not the intended recipient, please notify the sender immediately, by reply electronic mail or by telephone, of any unintended recipients so we may correct our records. Also, delete the original electronic mail and any attachments without making any copies of the electronic mail message or attachments. |