Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-08-12 08:01:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-08-12 08:22:58 +0300
commit4b6fa4d897a0bb3252b16383492b526d2cef3920 (patch)
tree2793afc516c9a97e0d23d33a62028a6a9d87e8e2 /release/scripts/startup/bl_operators/clip.py
parent444a0202d40705b6a6f21e59e883518be577cf4e (diff)
PyAPI: update scripts for matrix multiply operator
Operators: - add torus - align objects - bake physics - make dupli faces - smart project Templates: - 3D view ray cast Other: - Methods for bones/edit-bones
Diffstat (limited to 'release/scripts/startup/bl_operators/clip.py')
-rw-r--r--release/scripts/startup/bl_operators/clip.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index a94076ab61b..d05082b0dd8 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -300,7 +300,7 @@ class CLIP_OT_bundles_to_mesh(Operator):
reconstruction = tracking_object.reconstruction
framenr = scene.frame_current - clip.frame_start + 1
reconstructed_matrix = reconstruction.cameras.matrix_from_frame(framenr)
- matrix = camera.matrix_world * reconstructed_matrix.inverted()
+ matrix = camera.matrix_world @ reconstructed_matrix.inverted()
for track in tracking_object.tracks:
if track.has_bundle and track.select:
@@ -580,10 +580,12 @@ class CLIP_OT_setup_tracking_scene(Operator):
scene.camera = camob
- camob.matrix_local = (Matrix.Translation((7.481, -6.508, 5.344)) *
- Matrix.Rotation(0.815, 4, 'Z') *
- Matrix.Rotation(0.011, 4, 'Y') *
- Matrix.Rotation(1.109, 4, 'X'))
+ camob.matrix_local = (
+ Matrix.Translation((7.481, -6.508, 5.344)) @
+ Matrix.Rotation(0.815, 4, 'Z') @
+ Matrix.Rotation(0.011, 4, 'Y') @
+ Matrix.Rotation(1.109, 4, 'X')
+ )
return camob