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.