[Bf-blender-cvs] [02c5c091dfd] master: Bevel modifier: let it work on wire edges when vertex_only.

Howard Trickey noreply at git.blender.org
Mon Jul 22 13:14:14 CEST 2019


Commit: 02c5c091dfd6cc41796f60f7f406541afe1729a2
Author: Howard Trickey
Date:   Mon Jul 22 07:13:04 2019 -0400
Branches: master
https://developer.blender.org/rB02c5c091dfd6cc41796f60f7f406541afe1729a2

Bevel modifier: let it work on wire edges when vertex_only.

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

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

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

diff --git a/source/blender/modifiers/intern/MOD_bevel.c b/source/blender/modifiers/intern/MOD_bevel.c
index 2677f8ddfdd..309af4d4812 100644
--- a/source/blender/modifiers/intern/MOD_bevel.c
+++ b/source/blender/modifiers/intern/MOD_bevel.c
@@ -130,9 +130,6 @@ static Mesh *applyModifier(ModifierData *md, const ModifierEvalContext *ctx, Mes
 
   if (vertex_only) {
     BM_ITER_MESH (v, &iter, bm, BM_VERTS_OF_MESH) {
-      if (!BM_vert_is_manifold(v)) {
-        continue;
-      }
       if (bmd->lim_flags & MOD_BEVEL_WEIGHT) {
         weight = BM_elem_float_data_get(&bm->vdata, v, CD_BWEIGHT);
         if (weight == 0.0f) {



More information about the Bf-blender-cvs mailing list