View Single Post
  #4  
Old 06-30-2005, 02:40 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
When you use a vector to translate an object you need to do the following:
Code:
object.translate(vector.get())
The get command will return a list of the vector values.

When creating vectors you can pass it individual values or a list or another vector:
Code:
vector = viz.Vector(0,1,2)
vector = viz.Vector([0,1,2])
vector = viz.Vector(otherVector)
Also, I never got your email.
Reply With Quote