[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60996] trunk/blender/source/blender/ editors/sculpt_paint/sculpt.c: fix [#37250] dynotopo initial triangulation

Dalai Felinto dfelinto at gmail.com
Tue Oct 29 18:14:43 CET 2013


Revision: 60996
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60996
Author:   dfelinto
Date:     2013-10-29 17:14:43 +0000 (Tue, 29 Oct 2013)
Log Message:
-----------
fix [#37250] dynotopo initial triangulation

hmrf arguments order was wrong ... but int/bool casting made it pass
through the compiler

Modified Paths:
--------------
    trunk/blender/source/blender/editors/sculpt_paint/sculpt.c

Modified: trunk/blender/source/blender/editors/sculpt_paint/sculpt.c
===================================================================
--- trunk/blender/source/blender/editors/sculpt_paint/sculpt.c	2013-10-29 16:43:58 UTC (rev 60995)
+++ trunk/blender/source/blender/editors/sculpt_paint/sculpt.c	2013-10-29 17:14:43 UTC (rev 60996)
@@ -4660,7 +4660,7 @@
 static void sculpt_dynamic_topology_triangulate(BMesh *bm)
 {
 	if (bm->totloop != bm->totface * 3) {
-		BM_mesh_triangulate(bm, false, MOD_TRIANGULATE_QUAD_FIXED, MOD_TRIANGULATE_NGON_SCANFILL, NULL, NULL);
+		BM_mesh_triangulate(bm, MOD_TRIANGULATE_QUAD_FIXED, MOD_TRIANGULATE_NGON_SCANFILL, false, NULL, NULL);
 	}
 }
 




More information about the Bf-blender-cvs mailing list