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>2012-04-21 17:37:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-21 17:37:26 +0400
commit1615b46963f79e90621c155a5d85925a4b5171a3 (patch)
treef029c9dc35c645b9f622f82a8e761a18c033c208 /source/blender/editors/sculpt_paint/sculpt_uv.c
parentd02aed6c6474eafbcc312156d1debfccb230a00f (diff)
style cleanup
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_uv.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_uv.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_uv.c b/source/blender/editors/sculpt_paint/sculpt_uv.c
index 4b866c3c9c3..b4f8f689a6a 100644
--- a/source/blender/editors/sculpt_paint/sculpt_uv.c
+++ b/source/blender/editors/sculpt_paint/sculpt_uv.c
@@ -84,7 +84,7 @@ typedef struct UvEdge {
unsigned int uv2;
/* general use flag (Used to check if edge is boundary here, and propagates to adjacency elements) */
char flag;
-}UvEdge;
+} UvEdge;
typedef struct UVInitialStrokeElement {
/* index to unique uv */
@@ -95,7 +95,7 @@ typedef struct UVInitialStrokeElement {
/* initial uv position */
float initial_uv[2];
-}UVInitialStrokeElement;
+} UVInitialStrokeElement;
typedef struct UVInitialStroke {
/* Initial Selection,for grab brushes for instance */
@@ -106,7 +106,7 @@ typedef struct UVInitialStroke {
/* initial mouse coordinates */
float init_coord[2];
-}UVInitialStroke;
+} UVInitialStroke;
/* custom data for uv smoothing brush */
@@ -142,7 +142,7 @@ typedef struct UvSculptData {
/* store invert flag here */
char invert;
-}UvSculptData;
+} UvSculptData;
/*********** Improved Laplacian Relaxation Operator ************************/
/* original code by Raul Fernandez Hernandez "farsthary" *
@@ -152,7 +152,7 @@ typedef struct UvSculptData {
typedef struct Temp_UvData {
float sum_co[2], p[2], b[2], sum_b[2];
int ncounter;
-}Temp_UVData;
+} Temp_UVData;