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/makesdna/DNA_meshdata_types.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/makesdna/DNA_meshdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 0a186765cae..3d2941e4d4c 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -36,7 +36,7 @@ struct Bone;
typedef struct MFace {
unsigned int v1, v2, v3, v4;
- char puno, mat_nr;
+ char pad, mat_nr;
char edcode, flag;
} MFace;