From dc26c5e1ad98b47675ee9345af301a937905808d Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 3 Dec 2018 20:06:35 +0100 Subject: Fix T58635: 2.8 - "3D Markers to Mesh" error. --- release/scripts/startup/bl_operators/clip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/scripts/startup/bl_operators/clip.py') 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: -- cgit v1.2.3