bugfix [#22800] Mathutil bug with vector

example wasnt updated.
This commit is contained in:
2010-07-11 16:12:32 +00:00
parent ffcec4024b
commit 148ccc2f17
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import mathutils
from math import radians
vec = mathutils.Vector(1.0, 2.0, 3.0)
vec = mathutils.Vector((1.0, 2.0, 3.0))
mat_rot = mathutils.RotationMatrix(radians(90), 4, 'X')
mat_trans = mathutils.TranslationMatrix(vec)