Python API Docs: fix some examples
This commit is contained in:
@@ -6,7 +6,7 @@ vec = mathutils.Vector((1.0, 2.0, 3.0))
|
||||
mat_rot = mathutils.Matrix.Rotation(radians(90.0), 4, 'X')
|
||||
mat_trans = mathutils.Matrix.Translation(vec)
|
||||
|
||||
mat = mat_trans * mat_rot
|
||||
mat = mat_trans @ mat_rot
|
||||
mat.invert()
|
||||
|
||||
mat3 = mat.to_3x3()
|
||||
|
Reference in New Issue
Block a user