From aedf456938bf5611d8e1668599884ff3d957c643 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 20 Mar 2004 22:55:42 +0000 Subject: - split the data structures that actually constitute a mesh (MVert,MFace,etc) off into DNA_meshdata_types.h, to isolate areas of source that actually edit mesh *data* vs. areas that just edit mesh object information. --- source/blender/makesdna/DNA_mesh_types.h | 37 -------------------------------- 1 file changed, 37 deletions(-) (limited to 'source/blender/makesdna/DNA_mesh_types.h') diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h index 74f5d388723..ebfa3818ef8 100644 --- a/source/blender/makesdna/DNA_mesh_types.h +++ b/source/blender/makesdna/DNA_mesh_types.h @@ -43,13 +43,6 @@ struct MCol; struct MSticky; struct Mesh; struct OcInfo; -struct bDeformGroup; - -typedef struct MFace { - unsigned int v1, v2, v3, v4; - char puno, mat_nr; - char edcode, flag; -} MFace; typedef struct TFace { @@ -62,36 +55,6 @@ typedef struct TFace { short mode, tile, pad; } TFace; -typedef struct MDeformWeight { /* __NLA */ - int def_nr; /* __NLA */ - float weight; /* __NLA */ - struct Bone *data; /* __NLA */ /* Runtime: Does not need to be valid in file */ -} MDeformWeight; /* __NLA */ - -typedef struct MDeformVert { /* __NLA */ - struct MDeformWeight *dw; /* __NLA */ - int totweight; /* __NLA */ - int reserved1; /* __NLA */ -} MDeformVert; /* __NLA */ - - -typedef struct MVert { - float co[3]; - short no[3]; - char flag, mat_nr; -} MVert; - - -typedef struct MCol { - char a, r, g, b; -} MCol; - - -typedef struct MSticky { - float co[2]; -} MSticky; - - typedef struct Mesh { ID id; -- cgit v1.2.3