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:
authorTon Roosendaal <ton@blender.org>2004-10-01 00:38:35 +0400
committerTon Roosendaal <ton@blender.org>2004-10-01 00:38:35 +0400
commit8ae56af0cf3af36d4f0a9b21575e773ba678bb49 (patch)
treebccb08b605bc21001d11a25e22ffa84a30285be1 /source/blender/blenlib/BLI_editVert.h
parent742e00db3f92eb43449027bd2ece97bbfd5b4aa5 (diff)
Recoded how 'handles' were implemented; these were extra wireframe edges
actually, adding vertices and edges to displist. Now the subsurfer gives editvertices a pointer to the subsurfed vertex location; allowing not only vertices in 'optimal' draw to show correct, but also gives proper handling of borderselect and lasso for edges. :)
Diffstat (limited to 'source/blender/blenlib/BLI_editVert.h')
-rw-r--r--source/blender/blenlib/BLI_editVert.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h
index 30be5cd7b30..51daf7d0a98 100644
--- a/source/blender/blenlib/BLI_editVert.h
+++ b/source/blender/blenlib/BLI_editVert.h
@@ -44,6 +44,7 @@ typedef struct EditVert
struct EditVert *next, *prev, *vn;
float no[3];
float co[3];
+ float *ssco; /* subsurfed coordinate, dont use for temporal storage! it points to DispListMesh */
short xs, ys;
unsigned char f, h, f1, f2;
short fast; /* only 0 or 1, for editmesh_fastmalloc */