![]() |
|
#1
|
|||
|
|||
What is the problem with your "while True:" loop? Are you yielding to other threads in the loop by issuing a time.sleep(...) call?
Are you talking about a custom threading event or a Vizard event? |
#2
|
|||
|
|||
Quote:
Code:
import viz import threading class ThreadedClass (threading.Thread): def run(self): i = 0 while True: i = i + 1 print i t = ThreadedClass() t.setDaemon(True) t.start() viz.go() 1 2 <you get the idea> 1051 ** Load Time: 0.12 seconds 1052 1053 <you get the idea> 1066 No matter how long the program is run for, it terminates at 1066. Also, the numbers 1052 to 1056 do not appear in the output window until the main program is stopped. It appears as if the thread is not running past a certain number of iterations. I've been looking around for resources on how to do this, but I am having difficulty finding any. Do you have any references so that I don't have to post for every problem I encounter? As always, thanks I appreciate the help. |
#3
|
|||
|
|||
Try adding the following line to your script:
Code:
viz.directormode(viz.DIRECTOR_FAST) |
![]() |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Vizard won't run | wouters | Vizard | 5 | 02-05-2008 11:12 AM |
Fall 2007 release of Vizard R3 | 3 D | Announcements | 0 | 10-15-2007 04:50 PM |
McAfee Privacy Service 8.1 causes Vizard not to run | mspusch | Vizard | 0 | 03-01-2007 08:24 PM |
Matlab and Vizard | brystewa | Vizard | 1 | 09-18-2006 03:11 PM |
wxPython with Vizard | farshizzo | Vizard | 18 | 09-29-2005 08:49 AM |