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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-03 06:01:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-03 06:59:11 +0300
commit744f6339865fa8ed00b2e98aa5812b94d67a8604 (patch)
treeac31a849b46a8214baf16b87e104841a5fa85b11 /source/blender/bmesh/intern/bmesh_operators.h
parent141c6073ca39f0d59c67ebef89b094395b903a4a (diff)
Cleanup: trailing commas
Needed for clan-format not to wrap onto one line.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.h')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.h b/source/blender/bmesh/intern/bmesh_operators.h
index d346aa1b17b..ab4637b0456 100644
--- a/source/blender/bmesh/intern/bmesh_operators.h
+++ b/source/blender/bmesh/intern/bmesh_operators.h
@@ -30,7 +30,7 @@ enum {
SUBD_CORNER_INNERVERT,
SUBD_CORNER_PATH,
SUBD_CORNER_FAN,
- SUBD_CORNER_STRAIGHT_CUT
+ SUBD_CORNER_STRAIGHT_CUT,
};
/* aligned with PROP_SMOOTH and friends */
@@ -47,7 +47,7 @@ enum {
SUBDIV_SELECT_NONE,
SUBDIV_SELECT_ORIG,
SUBDIV_SELECT_INNER,
- SUBDIV_SELECT_LOOPCUT
+ SUBDIV_SELECT_LOOPCUT,
};
/* subdivide_edgering */
@@ -72,7 +72,7 @@ enum {
SIMFACE_COPLANAR,
SIMFACE_SMOOTH,
SIMFACE_FACEMAP,
- SIMFACE_FREESTYLE
+ SIMFACE_FREESTYLE,
};
/* similar edge selection slot values */
@@ -85,7 +85,7 @@ enum {
SIMEDGE_BEVEL,
SIMEDGE_SEAM,
SIMEDGE_SHARP,
- SIMEDGE_FREESTYLE
+ SIMEDGE_FREESTYLE,
};
/* similar vertex selection slot values */
@@ -93,14 +93,14 @@ enum {
SIMVERT_NORMAL = 0,
SIMVERT_FACE,
SIMVERT_VGROUP,
- SIMVERT_EDGE
+ SIMVERT_EDGE,
};
/* Poke face center calculation */
enum {
BMOP_POKE_MEDIAN_WEIGHTED = 0,
BMOP_POKE_MEDIAN,
- BMOP_POKE_BOUNDS
+ BMOP_POKE_BOUNDS,
};
/* Bevel offset_type slot values */
@@ -108,7 +108,7 @@ enum {
BEVEL_AMT_OFFSET,
BEVEL_AMT_WIDTH,
BEVEL_AMT_DEPTH,
- BEVEL_AMT_PERCENT
+ BEVEL_AMT_PERCENT,
};
/* Bevel face_strength_mode values: should match face_str mode enum in DNA_modifer_types.h */