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.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/editors/uvedit/uvedit_parametrizer.c b/source/blender/editors/uvedit/uvedit_parametrizer.c
index 7d82884760c..eb4ca2e13b2 100644
--- a/source/blender/editors/uvedit/uvedit_parametrizer.c
+++ b/source/blender/editors/uvedit/uvedit_parametrizer.c
@@ -82,10 +82,10 @@ typedef struct PVert {
struct PVert *nextlink;
union PVertUnion {
- PHashKey key; /* construct */
- int id; /* abf/lscm matrix index */
- float distortion; /* area smoothing */
- HeapNode *heaplink; /* edge collapsing */
+ PHashKey key; /* Construct. */
+ int id; /* ABF/LSCM matrix index. */
+ float distortion; /* Area smoothing. */
+ HeapNode *heaplink; /* Edge collapsing. */
} u;
struct PEdge *edge;
@@ -99,10 +99,10 @@ typedef struct PEdge {
struct PEdge *nextlink;
union PEdgeUnion {
- PHashKey key; /* construct */
- int id; /* abf matrix index */
- HeapNode *heaplink; /* fill holes */
- struct PEdge *nextcollapse; /* simplification */
+ PHashKey key; /* Construct. */
+ int id; /* ABF matrix index. */
+ HeapNode *heaplink; /* Fill holes. */
+ struct PEdge *nextcollapse; /* Simplification. */
} u;
struct PVert *vert;
@@ -118,10 +118,10 @@ typedef struct PFace {
struct PFace *nextlink;
union PFaceUnion {
- PHashKey key; /* construct */
- int chart; /* construct splitting*/
- float area3d; /* stretch */
- int id; /* abf matrix index */
+ PHashKey key; /* Construct. */
+ int chart; /* Construct splitting. */
+ float area3d; /* Stretch. */
+ int id; /* ABF matrix index. */
} u;
struct PEdge *edge;