Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2019-01-03 21:39:52 +0300
committerHoward Trickey <howard.trickey@gmail.com>2019-01-03 21:39:52 +0300
commitaef01c47e6334b214520f14c72b01de99387f122 (patch)
treef8edbb1bc5cce8c3ea5a2faaffd7462f14a69fa9 /source/blender/makesdna/DNA_modifier_types.h
parentbdfc10e482c4c6724a45259c4b2f2d7cde7d26d0 (diff)
Fix T58113 Multiple problems with bevel harden normals.
Move the bevel hardening code all into bmesh_bevel.c. Based on user feedback, rewrote the bevel hardening algorithm to be more what users want. Based on user feedback, changed the UI, removing some not-useful options. Now hardening normals while beveling is enabled by a simple checkbox. Now setting face strength gives options for which faces get their face strength set.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 748c68c3fd4..37157248aa6 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -357,13 +357,12 @@ typedef struct BevelModifierData {
short e_flags; /* flags to direct how edge weights are applied to verts */
short mat; /* material index if >= 0, else material inherited from surrounding faces */
short edge_flags;
- int pad2;
+ short face_str_mode;
+ short pad2;
float profile; /* controls profile shape (0->1, .5 is round) */
/* if the MOD_BEVEL_ANGLE is set, this will be how "sharp" an edge must be before it gets beveled */
float bevel_angle;
/* if the MOD_BEVEL_VWEIGHT option is set, this will be the name of the vert group, MAX_VGROUP_NAME */
- int hnmode;
- float hn_strength;
char defgrp_name[64];
struct BevelModNorEditData clnordata;
} BevelModifierData;
@@ -386,7 +385,7 @@ enum {
/* MOD_BEVEL_DIST = (1 << 12), */ /* same as above */
MOD_BEVEL_OVERLAP_OK = (1 << 13),
MOD_BEVEL_EVEN_WIDTHS = (1 << 14),
- MOD_BEVEL_SET_WN_STR = (1 << 15),
+ MOD_BEVEL_HARDEN_NORMALS = (1 << 15),
};
/* BevelModifierData->val_flags (not used as flags any more) */
@@ -403,12 +402,12 @@ enum {
MOD_BEVEL_MARK_SHARP = (1 << 1),
};
-/* BevelModifierData->hnmode */
+/* BevelModifierData->face_str_mode */
enum {
- MOD_BEVEL_HN_NONE,
- MOD_BEVEL_HN_FACE,
- MOD_BEVEL_HN_ADJ,
- MOD_BEVEL_FIX_SHA,
+ MOD_BEVEL_FACE_STRENGTH_NONE,
+ MOD_BEVEL_FACE_STRENGTH_NEW,
+ MOD_BEVEL_FACE_STRENGTH_AFFECTED,
+ MOD_BEVEL_FACE_STRENGTH_ALL,
};
typedef struct SmokeModifierData {