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:
authorJoseph Eagar <joeedh@gmail.com>2009-03-01 11:02:28 +0300
committerJoseph Eagar <joeedh@gmail.com>2009-03-01 11:02:28 +0300
commitd122aea865ccc04d7cfc642b0d98a9476cc20a87 (patch)
tree4db9a0a9526b46f233c6ac620e5fb881491a44eb /source/blender/editors/mesh/editmesh_tools.c
parent34dcf5fca246b448bf7ef0a37028d16c2b2cae61 (diff)
coded little vert connect tool. connects selected verts within the same face. currently integrated with fkey, along with the simple face merge tool I made too.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 7a617e6d340..e026bb8ea88 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -2353,7 +2353,7 @@ static void fill_tri_triple(EditMesh *em, EditFace *efa, struct GHash *gh, int n
MEM_freeN(innerverts);
}
-//Next two fill types are for knife exact only and are provided to allow for knifing through vertices
+//Next two fill types are for exact only and are provided to allow for knifing through vertices
//This means there is no multicut!
static void fill_quad_doublevert(EditMesh *em, EditFace *efa, int v1, int v2)
{