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>2014-02-27 01:38:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-27 01:39:25 +0400
commit8af2ed80a4bfa356ee19e74dc66cc20bb203e82e (patch)
tree778cf9ecc7433e870d4a789de113a6d4e38bf0fb /release/scripts/startup/bl_operators
parentc35ac8f7accf264e21f3f959ca99d05b6e04de88 (diff)
RNA: rename matrix_for_frame -> matrix_from_frame
Diffstat (limited to 'release/scripts/startup/bl_operators')
-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 72a26fd36e2..7e142cebb4f 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -195,7 +195,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_for_frame(framenr)
+ reconstructed_matrix = reconstruction.cameras.matrix_from_frame(framenr)
matrix = camera.matrix_world * reconstructed_matrix.inverted()
mesh = bpy.data.meshes.new(name="Tracks")