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-05-20 15:51:18 +0300
committerHoward Trickey <howard.trickey@gmail.com>2019-05-20 15:51:53 +0300
commit43500671dc7227df1a557ec6109a3323ee4ba348 (patch)
tree0bce4a1a7891d5478ad14805826329c55e3bec44 /source/blender/makesdna
parent49f530c7da6bd117c4b373307eb646d513538526 (diff)
Normal UI: Remove normals toolbar and add/muliply menu options.
See T64324 for discussion re improving normal editing ui. As next step, remove the face_strength tool settings because menu operator now includes that. Move face_strenth enum to better place. Remove normals toolbar panel because only thing left (normal_vector) can stay hidden for copy/paste. Remove add vector and multiply vector menu entries as they are useless without ui method for specifying operand, and they are very low utility operations anyway.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 0f6d028ea35..611a52774c7 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1499,7 +1499,7 @@ typedef struct ToolSettings {
/* Normal Editing */
float normal_vector[3];
- int face_strength;
+ char _pad6[4];
} ToolSettings;
/* *************************************************************** */
@@ -2089,13 +2089,6 @@ enum {
OB_DRAW_GROUPUSER_ALL = 2,
};
-/* toolsettings->face_strength */
-enum {
- FACE_STRENGTH_WEAK = -16384,
- FACE_STRENGTH_MEDIUM = 0,
- FACE_STRENGTH_STRONG = 16384,
-};
-
/* object_vgroup.c */
/* ToolSettings.vgroupsubset */
typedef enum eVGroupSelect {