Cleanup: trailing commas
Needed for clan-format not to wrap onto one line.
This commit is contained in:
@@ -1134,7 +1134,7 @@ static BMO_FlagSet bmo_enum_dissolve_limit_flags[] = {
|
||||
{BMO_DELIM_SEAM, "SEAM"},
|
||||
{BMO_DELIM_SHARP, "SHARP"},
|
||||
{BMO_DELIM_UV, "UV"},
|
||||
{0, NULL}
|
||||
{0, NULL},
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
@@ -358,7 +358,7 @@ enum {
|
||||
/* A version of 'DEL_FACES' that keeps edges on face boundaries,
|
||||
* allowing the surrounding edge-loop to be kept from removed face regions. */
|
||||
DEL_FACES_KEEP_BOUNDARY,
|
||||
DEL_ONLYTAGGED
|
||||
DEL_ONLYTAGGED,
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -125,7 +125,7 @@ enum {
|
||||
|
||||
/* do not intitialze function pointers and struct size in BMW_init */
|
||||
BMW_CUSTOM,
|
||||
BMW_MAXWALKERS
|
||||
BMW_MAXWALKERS,
|
||||
};
|
||||
|
||||
/* use with BMW_init, so as not to confuse with restrict flags */
|
||||
|
||||
@@ -46,7 +46,7 @@ static const float icovert[12][3] = {
|
||||
{-144.72f, 105.144f, 89.443f},
|
||||
{55.277f, 170.128f, 89.443f},
|
||||
{178.885f, 0.0f, 89.443f},
|
||||
{0.0f, 0.0f, 200.0f}
|
||||
{0.0f, 0.0f, 200.0f},
|
||||
};
|
||||
|
||||
static const short icoface[20][3] = {
|
||||
@@ -69,7 +69,7 @@ static const short icoface[20][3] = {
|
||||
{7, 6, 11},
|
||||
{8, 7, 11},
|
||||
{9, 8, 11},
|
||||
{10, 9, 11}
|
||||
{10, 9, 11},
|
||||
};
|
||||
|
||||
static const float icouvs[60][2] =
|
||||
@@ -93,7 +93,7 @@ static const float icouvs[60][2] =
|
||||
{1.000000f, 0.314921f}, {0.818181f, 0.314921f}, {0.909090f, 0.472382f},
|
||||
{0.272727f, 0.314921f}, {0.090909f, 0.314921f}, {0.181818f, 0.472382f},
|
||||
{0.454545f, 0.314921f}, {0.272727f, 0.314921f}, {0.363636f, 0.472382f},
|
||||
{0.636363f, 0.314921f}, {0.454545f, 0.314921f}, {0.545454f, 0.472382f}
|
||||
{0.636363f, 0.314921f}, {0.454545f, 0.314921f}, {0.545454f, 0.472382f},
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user