[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43213] branches/bmesh/blender/source/ blender/blenkernel/intern/mesh.c: Fix broken normals with mirror modifier

Andrew Wiggin ender79bl at gmail.com
Sat Jan 7 21:53:19 CET 2012


Revision: 43213
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=43213
Author:   ender79
Date:     2012-01-07 20:53:11 +0000 (Sat, 07 Jan 2012)
Log Message:
-----------
Fix broken normals with mirror modifier

Modified Paths:
--------------
    branches/bmesh/blender/source/blender/blenkernel/intern/mesh.c

Modified: branches/bmesh/blender/source/blender/blenkernel/intern/mesh.c
===================================================================
--- branches/bmesh/blender/source/blender/blenkernel/intern/mesh.c	2012-01-07 16:14:17 UTC (rev 43212)
+++ branches/bmesh/blender/source/blender/blenkernel/intern/mesh.c	2012-01-07 20:53:11 UTC (rev 43213)
@@ -1700,7 +1700,7 @@
 	if (only_face_normals == FALSE) {
 		/* vertex normals are optional, they require some extra calculations,
 		 * so make them optional */
-		mesh_calc_normals(mverts, numVerts, mloop, mpolys, numLoops, numPolys, polyNors_r);
+		mesh_calc_normals(mverts, numVerts, mloop, mpolys, numLoops, numPolys, pnors);
 	}
 	else {
 		/* only calc poly normals */




More information about the Bf-blender-cvs mailing list