Revision: 41340
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=41340
Author:   campbellbarton
Date:     2011-10-28 14:17:27 +0000 (Fri, 28 Oct 2011)
Log Message:
-----------
uncomment shape key mirror.

Modified Paths:
--------------
    branches/bmesh/blender/source/blender/editors/object/object_shapekey.c

Modified: branches/bmesh/blender/source/blender/editors/object/object_shapekey.c
===================================================================
--- branches/bmesh/blender/source/blender/editors/object/object_shapekey.c      
2011-10-28 13:51:06 UTC (rev 41339)
+++ branches/bmesh/blender/source/blender/editors/object/object_shapekey.c      
2011-10-28 14:17:27 UTC (rev 41340)
@@ -187,10 +187,10 @@
                        Mesh *me= ob->data;
                        MVert *mv;
 
-                       //BMESH_TODO mesh_octree_table(ob, NULL, NULL, 's');
+                       mesh_octree_table(ob, NULL, NULL, 's');
 
                        for(i1=0, mv=me->mvert; i1<me->totvert; i1++, mv++) {
-                               i2= -1; //BMESH_TODO mesh_get_x_mirror_vert(ob, 
i1);
+                               i2= mesh_get_x_mirror_vert(ob, i1);
                                if(i2==i1) {
                                        fp1= ((float *)kb->data) + i1*3;
                                        fp1[0] = -fp1[0];
@@ -213,7 +213,7 @@
                                }
                        }
 
-                       //BMESH_TODO mesh_octree_table(ob, NULL, NULL, 'e');
+                       mesh_octree_table(ob, NULL, NULL, 'e');
                }
                else if (ob->type == OB_LATTICE) {
                        Lattice *lt= ob->data;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to