View Single Post
  #3  
Old 09-11-2003, 11:01 AM
david david is offline
Member
 
Join Date: Mar 2003
Posts: 23
Hi, it did it again, although it does not seem to prevent the script from running. Here is the error message:


Traceback (most recent call last):
File "<string>", line 1, in ?
File "settingUpRooms.py", line 42, in ?
positions[i].makeIdent()
File "C:\Program Files\Vizard\vizmat.py", line 181, in makeIdent
transform.makeIdent(self.id)
SystemError: error return without exception set

The portion of the script containing the line was :
positions = []
positions.append(vizmat.Transform())
for i in range(0,11):
positions.append(vizmat.Transform())
positions[i].makeIdent()

If I remove the line incriminated, then I get the same kind of error message when I try to modify the transform objects (set them to rotations for instance)
The strange thing is that if I run that portion on its own, I do not get an error


David
Reply With Quote