[Bf-blender-cvs] [e5641251fc0] override-recursive-resync: Cleanup: remove comments on asserts in skin modifier, now that issue is fixed.

Bastien Montagne noreply at git.blender.org
Thu May 27 11:57:21 CEST 2021


Commit: e5641251fc026065fd36c57bb2c842f7e320be26
Author: Bastien Montagne
Date:   Thu May 27 11:56:47 2021 +0200
Branches: override-recursive-resync
https://developer.blender.org/rBe5641251fc026065fd36c57bb2c842f7e320be26

Cleanup: remove comments on asserts in skin modifier, now that issue is fixed.

===================================================================

M	source/blender/modifiers/intern/MOD_skin.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_skin.c b/source/blender/modifiers/intern/MOD_skin.c
index 8e906df3c57..58d70ef3a4a 100644
--- a/source/blender/modifiers/intern/MOD_skin.c
+++ b/source/blender/modifiers/intern/MOD_skin.c
@@ -1516,8 +1516,8 @@ static void hull_merge_triangles(SkinOutput *so, const SkinModifierData *smd)
       if (adj[0]->len == 3 && adj[1]->len == 3) {
         BMVert *quad[4];
 
-        //        BLI_assert(BM_face_is_normal_valid(adj[0]));
-        //        BLI_assert(BM_face_is_normal_valid(adj[1]));
+        BLI_assert(BM_face_is_normal_valid(adj[0]));
+        BLI_assert(BM_face_is_normal_valid(adj[1]));
 
         /* Construct quad using the two triangles adjacent to
          * the edge */



More information about the Bf-blender-cvs mailing list