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:
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_parametrizer.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_parametrizer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c
index 7a96bc60fd4..cc1336d0827 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.c
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.c
@@ -72,7 +72,7 @@
#endif
typedef enum PBool {
P_TRUE = 1,
- P_FALSE = 0
+ P_FALSE = 0,
} PBool;
/* Special Purpose Hash */
@@ -155,7 +155,7 @@ enum PVertFlag {
PVERT_SELECT = 2,
PVERT_INTERIOR = 4,
PVERT_COLLAPSE = 8,
- PVERT_SPLIT = 16
+ PVERT_SPLIT = 16,
};
enum PEdgeFlag {
@@ -167,7 +167,7 @@ enum PEdgeFlag {
PEDGE_FILLED = 32,
PEDGE_COLLAPSE = 64,
PEDGE_COLLAPSE_EDGE = 128,
- PEDGE_COLLAPSE_PAIR = 256
+ PEDGE_COLLAPSE_PAIR = 256,
};
/* for flipping faces */
@@ -176,7 +176,7 @@ enum PEdgeFlag {
enum PFaceFlag {
PFACE_CONNECTED = 1,
PFACE_FILLED = 2,
- PFACE_COLLAPSE = 4
+ PFACE_COLLAPSE = 4,
};
/* Chart */
@@ -208,7 +208,7 @@ typedef struct PChart {
} PChart;
enum PChartFlag {
- PCHART_HAS_PINS = 1
+ PCHART_HAS_PINS = 1,
};
enum PHandleState {