Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_meshdata_types.h
| Show All 31 Lines | |||||
| #ifndef __DNA_MESHDATA_TYPES_H__ | #ifndef __DNA_MESHDATA_TYPES_H__ | ||||
| #define __DNA_MESHDATA_TYPES_H__ | #define __DNA_MESHDATA_TYPES_H__ | ||||
| #include "DNA_customdata_types.h" | #include "DNA_customdata_types.h" | ||||
| #include "DNA_listBase.h" | #include "DNA_listBase.h" | ||||
| struct Image; | struct Image; | ||||
| /* runtime only */ | |||||
| # | |||||
| # | |||||
| typedef struct MLoopTri { | |||||
| unsigned int tri[3]; | |||||
| unsigned int poly; | |||||
| } MLoopTri; | |||||
| /*tessellation face, see MLoop/MPoly for the real face data*/ | /*tessellation face, see MLoop/MPoly for the real face data*/ | ||||
| typedef struct MFace { | typedef struct MFace { | ||||
| unsigned int v1, v2, v3, v4; | unsigned int v1, v2, v3, v4; | ||||
| short mat_nr; | short mat_nr; | ||||
| char edcode, flag; /* we keep edcode, for conversion to edges draw flags in old files */ | char edcode, flag; /* we keep edcode, for conversion to edges draw flags in old files */ | ||||
| } MFace; | } MFace; | ||||
| typedef struct MEdge { | typedef struct MEdge { | ||||
| ▲ Show 20 Lines • Show All 362 Lines • Show Last 20 Lines | |||||