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-03-23 04:56:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-23 04:56:22 +0400
commit385c11d92c34d5529e577541a080cc6dc5ac5142 (patch)
tree307e5cfb6a36b1e4fd7ce4acce46813ccdede43e /release/scripts/startup/bl_operators/clip.py
parent8e2efc1dbf4cc7e8e4f3240e7c2aa2cf51e6a656 (diff)
last commit broke cycles, also add BMESH_TODO's for python scripts that need upgrading.
Diffstat (limited to 'release/scripts/startup/bl_operators/clip.py')
-rw-r--r--release/scripts/startup/bl_operators/clip.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index 7a80b432c3a..7b5185d725f 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -716,6 +716,7 @@ class CLIP_OT_setup_tracking_scene(Operator):
mesh.vertices.add(len(vertices))
mesh.vertices.foreach_set("co", unpack_list(vertices))
+ # BMESH_TODO - use polygons
mesh.faces.add(len(faces))
mesh.faces.foreach_set("vertices_raw", unpack_face_list(faces))