[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4723] contrib/py/scripts/addons/ mesh_edgetools.py: Disabled code that can cause "Shaft" to fail until a fix is found.

Paul Marshall portsidepaul at hotmail.com
Mon Sep 2 01:27:51 CEST 2013


Revision: 4723
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4723
Author:   brikbot
Date:     2013-09-01 23:27:50 +0000 (Sun, 01 Sep 2013)
Log Message:
-----------
Disabled code that can cause "Shaft" to fail until a fix is found.

Modified Paths:
--------------
    contrib/py/scripts/addons/mesh_edgetools.py

Modified: contrib/py/scripts/addons/mesh_edgetools.py
===================================================================
--- contrib/py/scripts/addons/mesh_edgetools.py	2013-09-01 21:51:50 UTC (rev 4722)
+++ contrib/py/scripts/addons/mesh_edgetools.py	2013-09-01 23:27:50 UTC (rev 4723)
@@ -72,7 +72,7 @@
     "name": "EdgeTools",
     "author": "Paul Marshall",
     "version": (0, 8),
-    "blender": (2, 64, 0),
+    "blender": (2, 68, 0),
     "location": "View3D > Toolbar and View3D > Specials (W-key)",
     "warning": "",
     "description": "CAD style edge manipulation tools",
@@ -1221,7 +1221,7 @@
                 active = bm.select_history.active
                 edges.remove(active)
                 # Get all the verts:
-                edges = order_joined_edges(edges[0])
+                # edges = order_joined_edges(edges[0])
                 verts = []
                 for e in edges:
                     if verts.count(e.verts[0]) == 0:
@@ -1327,11 +1327,11 @@
 
             # Faces:
             # There is a problem with this right now
-            for i in range(len(edges)):
-                for j in range(numE):
-                    f = bFaces.new((newVerts[i], newVerts[i + 1],
-                                    newVerts[i + (numV * j) + 1], newVerts[i + (numV * j)]))
-                    f.normal_update()
+##            for i in range(len(edges)):
+##                for j in range(numE):
+##                    f = bFaces.new((newVerts[i], newVerts[i + 1],
+##                                    newVerts[i + (numV * j) + 1], newVerts[i + (numV * j)]))
+##                    f.normal_update()
         else:
             # Vertices:
             for i in range(numV * 2):



More information about the Bf-extensions-cvs mailing list