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>2004-03-21 01:55:42 +0300
committerDaniel Dunbar <daniel@zuster.org>2004-03-21 01:55:42 +0300
commitaedf456938bf5611d8e1668599884ff3d957c643 (patch)
tree85fab784209ae9810d19021d232a1c30b4a81d99 /source/blender/makesdna/DNA_mesh_types.h
parent0d4300eb49eabec898828656d1553ec70cda935d (diff)
- 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.
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h37
1 files changed, 0 insertions, 37 deletions
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;