[Bf-blender-cvs] [0ae6a8570ba] master: Cleanup: typo, style

Campbell Barton noreply at git.blender.org
Wed Oct 9 11:51:45 CEST 2019


Commit: 0ae6a8570ba44f357f1ae281000c98bb4115aba5
Author: Campbell Barton
Date:   Wed Oct 9 20:13:59 2019 +1100
Branches: master
https://developer.blender.org/rB0ae6a8570ba44f357f1ae281000c98bb4115aba5

Cleanup: typo, style

===================================================================

M	release/scripts/modules/bpy_extras/mesh_utils.py
M	release/scripts/modules/bpy_types.py

===================================================================

diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py
index 1576947b8b4..7c5e6264c7a 100644
--- a/release/scripts/modules/bpy_extras/mesh_utils.py
+++ b/release/scripts/modules/bpy_extras/mesh_utils.py
@@ -265,7 +265,7 @@ def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
         return []
 
     def mlen(co):
-        # manhatten length of a vector, faster then length
+        # Manhatten length of a vector, faster then length.
         return abs(co[0]) + abs(co[1]) + abs(co[2])
 
     def vert_treplet(v, i):
@@ -278,9 +278,8 @@ def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
             return v1[1], v2[1]
 
     if not fix_loops:
-        """
-        Normal single concave loop filling
-        """
+        # Normal single concave loop filling.
+
         if type(from_data) in {tuple, list}:
             verts = [Vector(from_data[i]) for ii, i in enumerate(indices)]
         else:
@@ -294,17 +293,19 @@ def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
         fill = tessellate_polygon([verts])
 
     else:
-        """
-        Separate this loop into multiple loops be finding edges that are
-        used twice. This is used by lightwave LWO files a lot
-        """
+        # Separate this loop into multiple loops be finding edges that are
+        # used twice. This is used by Light-Wave LWO files a lot.
 
         if type(from_data) in {tuple, list}:
-            verts = [vert_treplet(Vector(from_data[i]), ii)
-                     for ii, i in enumerate(indices)]
+            verts = [
+                vert_treplet(Vector(from_data[i]), ii)
+                for ii, i in enumerate(indices)
+            ]
         else:
-            verts = [vert_treplet(from_data.vertices[i].co, ii)
-                     for ii, i in enumerate(indices)]
+            verts = [
+                vert_treplet(from_data.vertices[i].co, ii)
+                for ii, i in enumerate(indices)
+            ]
 
         edges = [(i, i - 1) for i in range(len(verts))]
         if edges:
@@ -354,7 +355,7 @@ def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
             else:
                 return False
 
-            # If were stuill here s1 and s2 are 2 segments in the same polyline
+            # If were still here s1 and s2 are 2 segments in the same poly-line.
             s1.pop()  # remove the last vert from s1
             s1.extend(s2)  # add segment 2 to segment 1
 
@@ -409,7 +410,7 @@ def ngon_tessellate(from_data, indices, fix_loops=True, debug_print=True):
             print('Warning Cannot scanfill, fallback on a triangle fan.')
         fill = [[0, i - 1, i] for i in range(2, len(indices))]
     else:
-        # Use real scanfill.
+        # Use real scan-fill.
         # See if its flipped the wrong way.
         flip = None
         for fi in fill:
diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py
index 1c66c59149f..76c495c078d 100644
--- a/release/scripts/modules/bpy_types.py
+++ b/release/scripts/modules/bpy_types.py
@@ -439,7 +439,7 @@ class Mesh(bpy_types.ID):
            int pairs, each pair contains two indices to the
            *vertices* argument. eg: [(1, 2), ...]
 
-           When an empty iterable is passed in, the edsges are inferred from the polygons.
+           When an empty iterable is passed in, the edges are inferred from the polygons.
 
            When non-emtpy, either:



More information about the Bf-blender-cvs mailing list