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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-12-03 22:06:35 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-12-03 22:06:50 +0300
commitdc26c5e1ad98b47675ee9345af301a937905808d (patch)
tree02b2fcc688a43b62fddf04b9226f5cffb5e035c4
parent9637a1785694eb83bdfe2b0fe6c55c962137881b (diff)
Fix T58635: 2.8 - "3D Markers to Mesh" error.
-rw-r--r--release/scripts/startup/bl_operators/clip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index 74b3e420cdf..df8f2d1c089 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -299,7 +299,7 @@ class CLIP_OT_bundles_to_mesh(Operator):
if camera:
reconstruction = tracking_object.reconstruction
framenr = scene.frame_current - clip.frame_start + 1
- reconstructed_matrix = reconstruction.cameras.matrix_from_frame(framenr)
+ reconstructed_matrix = reconstruction.cameras.matrix_from_frame(frame=framenr)
matrix = camera.matrix_world @ reconstructed_matrix.inverted()
for track in tracking_object.tracks: