Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEclectiel L <eclect25@yahoo.com>2011-04-01 18:20:47 +0400
committerEclectiel L <eclect25@yahoo.com>2011-04-01 18:20:47 +0400
commit9c20808699b648d3ed6af47fff793c2f2efaf4da (patch)
treedc1817802169f41cfc39629451e66c4f4c1ea959 /mesh_bsurfaces.py
parentd665247a4626997d71564cf66a36ab3dd5af814c (diff)
An update over surface sketching, allowing object level transformations, Undo, and solving some problems like a mesh duplication that was taking place when there were no strokes, and eliminating a remove doubles that was performed in the whole mesh, now limiting it to just the areas where it's needed to merge the new surface.
Diffstat (limited to 'mesh_bsurfaces.py')
-rw-r--r--mesh_bsurfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index a75ff0a5..dc9ba07f 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -76,7 +76,7 @@ class GPENCIL_OT_SURFSK_add_surface(bpy.types.Operator):
bl_options = {'REGISTER', 'UNDO'}
- #### Get an ordered list of a chain of vertices.
+ ##### Get an ordered list of a chain of vertices.
def get_ordered_verts(self, ob, all_selected_edges_idx, all_selected_verts_idx, first_vert_idx, middle_vertex_idx):
# Order selected vertexes.
verts_ordered = []