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:
authorRohan Rathi <rohanrathi08@gmail.com>2018-07-02 20:25:33 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-07-02 20:25:33 +0300
commit368a64fe041ee0950584f5b51e2f64036edb31d0 (patch)
treefe6ebde070cc82c8e6bceb61765f05f3683e3a74 /source/blender/makesdna/DNA_modifier_types.h
parent74ace41160bd6e98c904b34e5efe0893b1719387 (diff)
Refactored bevel normal editing functionality.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 7ae9383a907..33381be0ef5 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -318,6 +318,11 @@ enum {
MOD_EDGESPLIT_FROMFLAG = (1 << 2),
};
+typedef struct BevelModNorEditData {
+ struct GHash *faceHash;
+ struct GHash *vert_hash;
+} BevelModNorEditData;
+
typedef struct BevelModifierData {
ModifierData modifier;
@@ -337,6 +342,7 @@ typedef struct BevelModifierData {
int hnmode;
float hn_strength;
char defgrp_name[64];
+ struct BevelModNorEditData clnordata;
} BevelModifierData;
/* BevelModifierData->flags and BevelModifierData->lim_flags */