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>2012-02-08 08:37:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-08 08:37:37 +0400
commit1f74789d1250033eed6c5b9c86df5274c1339581 (patch)
treef8352e592b8cf883b8b4f6d8f6d20bbdb3c4d0b8 /release/scripts/startup/bl_operators/clip.py
parent9467ddb9037c3486bcbe80e9b9be510c05dfe526 (diff)
Correct mathutils documentation, also correct some python spelling errors and add makefile target `check_spelling`
Diffstat (limited to 'release/scripts/startup/bl_operators/clip.py')
-rw-r--r--release/scripts/startup/bl_operators/clip.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index aa4f3a35e6d..9e4a5819961 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -275,8 +275,8 @@ class CLIP_OT_delete_proxy(Operator):
class CLIP_OT_set_viewport_background(Operator):
- """Set current movie clip as a camera background in 3D viewport \
-(works only when a 3D viewport is visible)"""
+ """Set current movie clip as a camera background in 3D view-port """ \
+ """(works only when a 3D view-port is visible)"""
bl_idname = "clip.set_viewport_background"
bl_label = "Set as Background"
@@ -314,9 +314,9 @@ object's movement caused by this constraint"""
frame_current = scene.frame_current
matrices = []
- # Find constraint which would eb converting
+ # Find constraint which would be converting
# TODO: several camera solvers and track followers would fail,
- # but can't think about eal workflow where it'll be useful
+ # but can't think about real work-flow where it'll be useful
for x in ob.constraints:
if x.type in {'CAMERA_SOLVER', 'FOLLOW_TRACK', 'OBJECT_SOLVER'}:
con = x
@@ -368,7 +368,7 @@ object's movement caused by this constraint"""
ob.animation_data_create()
- # Apply matrices on object and insert keyframes
+ # Apply matrices on object and insert key-frames
i = 0
for x in range(sfra, efra + 1):
scene.frame_set(x)
@@ -791,7 +791,7 @@ class CLIP_OT_setup_tracking_scene(Operator):
all_layers = self._mergeLayers(fg.layers, bg.layers)
- # enshure all lamps are active on foreground and background
+ # ensure all lamps are active on foreground and background
has_lamp = False
has_mesh = False
for ob in scene.objects: