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-01-15 15:15:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-15 15:30:31 +0300
commit4226ee0b71fec6f08897dacf3d6632526618acca (patch)
tree560c333c5a9458f3dbbb606befd52d558b35503f /source/blender/blenlib/BLI_scanfill.h
parent30c3852ffd140b003410aae25b222dea8b76412f (diff)
Cleanup: comment line length (blenlib)
Prevents clang-format wrapping text before comments.
Diffstat (limited to 'source/blender/blenlib/BLI_scanfill.h')
-rw-r--r--source/blender/blenlib/BLI_scanfill.h18
1 files changed, 12 insertions, 6 deletions
diff --git a/source/blender/blenlib/BLI_scanfill.h b/source/blender/blenlib/BLI_scanfill.h
index f6b37fa2ec3..eaca79801be 100644
--- a/source/blender/blenlib/BLI_scanfill.h
+++ b/source/blender/blenlib/BLI_scanfill.h
@@ -71,13 +71,19 @@ typedef struct ScanFillVert {
int i;
unsigned int u;
} tmp;
- float co[3]; /* vertex location */
- float xy[2]; /* 2D projection of vertex location */
- unsigned int keyindex; /* index, caller can use how it likes to match the scanfill result with own data */
+ /** vertex location */
+ float co[3];
+ /** 2D projection of vertex location */
+ float xy[2];
+ /** index, caller can use how it likes to match the scanfill result with own data */
+ unsigned int keyindex;
unsigned short poly_nr;
- unsigned char edge_tot; /* number of edges using this vertex */
- unsigned int f : 4; /* vert status */
- unsigned int user_flag : 4; /* flag callers can use as they like */
+ /** number of edges using this vertex */
+ unsigned char edge_tot;
+ /** vert status */
+ unsigned int f : 4;
+ /** flag callers can use as they like */
+ unsigned int user_flag : 4;
} ScanFillVert;
typedef struct ScanFillEdge {