Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_meshdata_types.h
| Show First 20 Lines • Show All 53 Lines • ▼ Show 20 Lines | |||||
| } MDeformVert; | } MDeformVert; | ||||
| typedef struct MVert { | typedef struct MVert { | ||||
| float co[3]; | float co[3]; | ||||
| short no[3]; | short no[3]; | ||||
| char flag, bweight; | char flag, bweight; | ||||
| } MVert; | } MVert; | ||||
| /** Tessellation vertex color data. | /** | ||||
| * Tessellation vertex color data. | |||||
| * at the moment alpha is abused for vertex painting and not used for transparency, | * at the moment alpha is abused for vertex painting and not used for transparency, | ||||
| * note that red and blue are swapped | * note that red and blue are swapped. | ||||
| */ | */ | ||||
| typedef struct MCol { | typedef struct MCol { | ||||
| unsigned char a, r, g, b; | unsigned char a, r, g, b; | ||||
| } MCol; | } MCol; | ||||
| /* new face structure, replaces MFace, which is now only used for storing tessellations.*/ | /* new face structure, replaces MFace, which is now only used for storing tessellations.*/ | ||||
| typedef struct MPoly { | typedef struct MPoly { | ||||
| /* offset into loop array and number of loops in the face */ | /* offset into loop array and number of loops in the face */ | ||||
| ▲ Show 20 Lines • Show All 383 Lines • Show Last 20 Lines | |||||