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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-11-21 21:05:27 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-11-21 21:05:27 +0400
commit697e4d2ca77436d020763b3eb0a66baa3072a4e6 (patch)
tree8ade818f4d8f39c537bec83e30cd599560da6cbe /release
parent6f73e351ee2f5e8dbdd867d160549bd9304865d2 (diff)
Last part of camera tracking names cleanup: bundles -> 3d markers
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/clip.py8
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py8
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
3 files changed, 9 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index 59c4f88251d..63b928c952b 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -77,11 +77,11 @@ class CLIP_OT_track_to_empty(Operator):
return {'FINISHED'}
-class CLIP_OT_tracks_to_mesh(Operator):
- """Create vertex cloud using coordinates of tracks"""
+class CLIP_OT_bundles_to_mesh(Operator):
+ """Create vertex cloud using coordinates of reconstructed tracks"""
- bl_idname = "clip.tracks_to_mesh"
- bl_label = "Tracks to Mesh"
+ bl_idname = "clip.bundles_to_mesh"
+ bl_label = "3D Markers to Mesh"
bl_options = {'UNDO', 'REGISTER'}
@classmethod
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index a70d632e8b0..eb67f6b3ccc 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -210,7 +210,7 @@ class CLIP_PT_tools_geometry(Panel):
def draw(self, context):
layout = self.layout
- layout.operator("clip.tracks_to_mesh")
+ layout.operator("clip.bundles_to_mesh")
layout.operator("clip.track_to_empty")
@@ -402,15 +402,15 @@ class CLIP_PT_display(Panel):
col.prop(sc, "show_marker_search", text="Search")
col.prop(sc, "show_pyramid_levels", text="Pyramid")
- col.prop(sc, "show_track_path", text="Track Path")
+ col.prop(sc, "show_track_path", text="Path")
row = col.row()
row.active = sc.show_track_path
row.prop(sc, "path_length", text="Length")
col.prop(sc, "show_disabled", "Disabled Tracks")
- col.prop(sc, "show_bundles", text="Bundles")
+ col.prop(sc, "show_bundles", text="3D Markers")
- col.prop(sc, "show_names", text="Track Names and Status")
+ col.prop(sc, "show_names", text="Names and Status")
col.prop(sc, "show_tiny_markers", text="Compact Markers")
col.prop(sc, "show_grease_pencil", text="Grease Pencil")
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 295b7421017..ce500b20d78 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2203,7 +2203,7 @@ class VIEW3D_PT_view3d_motion_tracking(Panel):
col = layout.column()
col.active = view.show_reconstruction
- col.prop(view, "show_tracks_name")
+ col.prop(view, "show_bundle_names")
col.prop(view, "show_camera_path")
col.label(text="Tracks:")
col.prop(view, "tracks_draw_type", text="")