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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:02:41 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-03 13:02:41 +0400
commit63810ffcef825930b034899f54107fc35b159349 (patch)
tree68001354d92338876451ea5707b455f9fc07270e /release/scripts/modules/bpy_extras/mesh_utils.py
parenta0a4c54710603b8edd61b4f33ce388154f41a707 (diff)
Style edit (mostly), use """ for docstrings (not ''').
Should also fix the broken py ops tips...
Diffstat (limited to 'release/scripts/modules/bpy_extras/mesh_utils.py')
-rw-r--r--release/scripts/modules/bpy_extras/mesh_utils.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/modules/bpy_extras/mesh_utils.py b/release/scripts/modules/bpy_extras/mesh_utils.py
index efd69f91a8b..ad0fe06b68b 100644
--- a/release/scripts/modules/bpy_extras/mesh_utils.py
+++ b/release/scripts/modules/bpy_extras/mesh_utils.py
@@ -319,7 +319,7 @@ def edge_loops_from_edges(mesh, edges=None):
def ngon_tessellate(from_data, indices, fix_loops=True):
- '''
+ """
Takes a polyline of indices (fgon) and returns a list of face
indicie lists. Designed to be used for importers that need indices for an
fgon to create from existing verts.
@@ -329,7 +329,7 @@ def ngon_tessellate(from_data, indices, fix_loops=True):
to fill, and can be a subset of the data given.
fix_loops: If this is enabled polylines that use loops to make multiple
polylines are delt with correctly.
- '''
+ """
from mathutils.geometry import tessellate_polygon
from mathutils import Vector
@@ -352,9 +352,9 @@ def ngon_tessellate(from_data, indices, fix_loops=True):
return v1[1], v2[1]
if not fix_loops:
- '''
+ """
Normal single concave loop filling
- '''
+ """
if type(from_data) in {tuple, list}:
verts = [Vector(from_data[i]) for ii, i in enumerate(indices)]
else:
@@ -368,10 +368,10 @@ def ngon_tessellate(from_data, indices, fix_loops=True):
fill = tessellate_polygon([verts])
else:
- '''
+ """
Seperate this loop into multiple loops be finding edges that are
used twice. This is used by lightwave LWO files a lot
- '''
+ """
if type(from_data) in {tuple, list}:
verts = [vert_treplet(Vector(from_data[i]), ii)