[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [53705] trunk/blender/source/blender/bmesh /operators/bmo_triangulate.c: fix for own mistake in recent changes to scanfill, bmo_triangle_fill_exec( ) (alt+f), was missing BLI_SCANFILL_CALC_HOLES argument.

Campbell Barton ideasman42 at gmail.com
Thu Jan 10 15:28:07 CET 2013


Revision: 53705
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53705
Author:   campbellbarton
Date:     2013-01-10 14:28:06 +0000 (Thu, 10 Jan 2013)
Log Message:
-----------
fix for own mistake in recent changes to scanfill, bmo_triangle_fill_exec() (alt+f), was missing BLI_SCANFILL_CALC_HOLES argument.
reported as [#33819]

Modified Paths:
--------------
    trunk/blender/source/blender/bmesh/operators/bmo_triangulate.c

Modified: trunk/blender/source/blender/bmesh/operators/bmo_triangulate.c
===================================================================
--- trunk/blender/source/blender/bmesh/operators/bmo_triangulate.c	2013-01-10 13:59:52 UTC (rev 53704)
+++ trunk/blender/source/blender/bmesh/operators/bmo_triangulate.c	2013-01-10 14:28:06 UTC (rev 53705)
@@ -190,7 +190,7 @@
 		/* sf_edge->tmp.p = e; */ /* UNUSED */
 	}
 	
-	BLI_scanfill_calc(&sf_ctx, 0);
+	BLI_scanfill_calc(&sf_ctx, BLI_SCANFILL_CALC_HOLES);
 	
 	for (sf_tri = sf_ctx.fillfacebase.first; sf_tri; sf_tri = sf_tri->next) {
 		BMFace *f = BM_face_create_quad_tri(bm,




More information about the Bf-blender-cvs mailing list