[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45024] trunk/blender/source/blender/ editors/mesh/bmesh_tools.c: temp disable inset boundary option, it can make invalid meshes, need to look into this further.

Campbell Barton ideasman42 at gmail.com
Tue Mar 20 12:46:02 CET 2012


Revision: 45024
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45024
Author:   campbellbarton
Date:     2012-03-20 11:45:55 +0000 (Tue, 20 Mar 2012)
Log Message:
-----------
temp disable inset boundary option, it can make invalid meshes, need to look into this further.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/bmesh_tools.c

Modified: trunk/blender/source/blender/editors/mesh/bmesh_tools.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/bmesh_tools.c	2012-03-20 09:45:17 UTC (rev 45023)
+++ trunk/blender/source/blender/editors/mesh/bmesh_tools.c	2012-03-20 11:45:55 UTC (rev 45024)
@@ -4578,7 +4578,7 @@
 	Object *obedit = CTX_data_edit_object(C);
 	BMEditMesh *em = BMEdit_FromObject(obedit);
 	BMOperator bmop;
-	const int use_boundary        = RNA_boolean_get(op->ptr, "use_boundary");
+	const int use_boundary        = FALSE; //RNA_boolean_get(op->ptr, "use_boundary");
 	const int use_even_offset     = RNA_boolean_get(op->ptr, "use_even_offset");
 	const int use_relative_offset = RNA_boolean_get(op->ptr, "use_relative_offset");
 	const float thickness         = RNA_float_get(op->ptr, "thickness");
@@ -4623,7 +4623,7 @@
 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO;
 
 	/* properties */
-	RNA_def_boolean(ot->srna, "use_boundary",        TRUE, "Boundary",  "Inset face boundries");
+	// RNA_def_boolean(ot->srna, "use_boundary",        TRUE, "Boundary",  "Inset face boundries");
 	RNA_def_boolean(ot->srna, "use_even_offset",     TRUE, "Offset Even",      "Scale the offset to give more even thickness");
 	RNA_def_boolean(ot->srna, "use_relative_offset", FALSE, "Offset Relative", "Scale the offset by surrounding geometry");
 




More information about the Bf-blender-cvs mailing list