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-08-04 20:01:53 +0300
committerRohan Rathi <rohanrathi08@gmail.com>2018-08-04 20:01:53 +0300
commit997b35f57a5454b5a43d47fddd84459bd19936f0 (patch)
tree9892b4b7ef05c481ac9594ba17751e3d7c8115a3 /source/blender/bmesh/intern/bmesh_operators.h
parente8748e5ae7955b31c17c6cddb5e092202b39fcfd (diff)
Added comments on hn_mode, BMOps on bevel
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.h b/source/blender/bmesh/intern/bmesh_operators.h
index 9f6ac50a3e5..6d518545967 100644
--- a/source/blender/bmesh/intern/bmesh_operators.h
+++ b/source/blender/bmesh/intern/bmesh_operators.h
@@ -128,10 +128,10 @@ enum {
};
enum {
- BEVEL_HN_NONE,
- BEVEL_HN_FACE,
- BEVEL_HN_ADJ,
- BEVEL_HN_FIX_SHA,
+ BEVEL_HN_NONE, /* Disable harden normals */
+ BEVEL_HN_FACE, /* harden normals according to face area */
+ BEVEL_HN_ADJ, /* harden normals according to adjacent 'beveled' faces */
+ BEVEL_HN_FIX_SHA, /* Special mode to fix normal shading continuity */
};
extern const BMOpDefine *bmo_opdefines[];