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:
authorDaniel Dunbar <daniel@zuster.org>2005-07-23 20:09:08 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-23 20:09:08 +0400
commit42da62679fc923c7a37c969d1b48e89f085a519f (patch)
tree68a0e2d55ffc25548278db5863865f534aa1cd32 /source/blender/blenlib/BLI_editVert.h
parent16b76eb0eca2a946103fb3a740a11d9156e7e12c (diff)
- removed mface->puno flags, was only used to flip normals in display
and this is better left to user (whee this was a fun commit! so much deleting!) - removed mesh_calculate_vertex_normals (replaced by mesh_calc_normals)
Diffstat (limited to 'source/blender/blenlib/BLI_editVert.h')
-rw-r--r--source/blender/blenlib/BLI_editVert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h
index a5fcf32d76e..6263a35432d 100644
--- a/source/blender/blenlib/BLI_editVert.h
+++ b/source/blender/blenlib/BLI_editVert.h
@@ -85,7 +85,7 @@ typedef struct EditFace
short xs, ys; /* selection */
struct TFace tf; /* a copy of original tface. */
unsigned char mat_nr, flag;
- unsigned char f, f1, h, puno;
+ unsigned char f, f1, h;
unsigned char fast; /* only 0 or 1, for editmesh_fastmalloc */
unsigned char fgonf; /* flag for fgon options */
} EditFace;