Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_meshdata_types.h
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
| typedef struct MEdge { | typedef struct MEdge { | ||||
| unsigned int v1, v2; | unsigned int v1, v2; | ||||
| char crease, bweight; | char crease, bweight; | ||||
| short flag; | short flag; | ||||
| } MEdge; | } MEdge; | ||||
| typedef struct MDeformWeight { | typedef struct MDeformWeight { | ||||
| int def_nr; | unsigned int def_nr; | ||||
| float weight; | float weight; | ||||
| } MDeformWeight; | } MDeformWeight; | ||||
| typedef struct MDeformVert { | typedef struct MDeformVert { | ||||
| struct MDeformWeight *dw; | struct MDeformWeight *dw; | ||||
| int totweight; | int totweight; | ||||
| int flag; /* flag only in use for weightpaint now */ | int flag; /* flag only in use for weightpaint now */ | ||||
| } MDeformVert; | } MDeformVert; | ||||
| ▲ Show 20 Lines • Show All 388 Lines • Show Last 20 Lines | |||||