correct example [#35850] documentation error for mathutils.Vector

This commit is contained in:
Campbell Barton 2013-06-23 19:04:12 +00:00
parent 969a076b02
commit 4f6f24752b

@ -4,7 +4,7 @@ import mathutils
vec = mathutils.Vector((0.0, 0.0, 1.0))
# unit length vector
vec_a = vec.copy().normalize()
vec_a = vec.normalized()
vec_b = mathutils.Vector((0.0, 1.0, 2.0))