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:
authorAntony Riakiotakis <kalast@gmail.com>2012-02-22 04:06:15 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-02-22 04:06:15 +0400
commitc7185d26527ef1ef56e0fe54cdef0d54578ae1b1 (patch)
tree7405af4365ea9aebb8f70e0776cf857331af499c /source/blender/blenkernel/BKE_mesh.h
parenta4e69673233e2506075ff43e3cdb09652fd66236 (diff)
Stitch tool fully functional again. Many thanks to Howard Trickey for proposing the loop winding criterion for normal disambiguation of edges. Unfortunately some extra memory has to be allocated for this to work correctly. If the tool had been initially written for bmesh I would have used the already present adjacency information to make it work, avoiding some extra allocations. Maybe a project for another day though, when I am more proficient with bmesh internals.
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_mesh.h b/source/blender/blenkernel/BKE_mesh.h
index 4f31bf1d177..0855d8b6057 100644
--- a/source/blender/blenkernel/BKE_mesh.h
+++ b/source/blender/blenkernel/BKE_mesh.h
@@ -194,6 +194,8 @@ typedef struct UvElement {
struct BMFace *face;
/* Index in the editFace of the uv */
struct BMLoop *l;
+ /* index in loop. */
+ unsigned short tfindex;
/* Whether this element is the first of coincident elements */
unsigned char separate;
/* general use flag */