Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_modifier_types.h
| Show First 20 Lines • Show All 2,114 Lines • ▼ Show 20 Lines | |||||
| } MeshSeqCacheModifierData; | } MeshSeqCacheModifierData; | ||||
| /* MeshSeqCacheModifierData.read_flag */ | /* MeshSeqCacheModifierData.read_flag */ | ||||
| enum { | enum { | ||||
| MOD_MESHSEQ_READ_VERT = (1 << 0), | MOD_MESHSEQ_READ_VERT = (1 << 0), | ||||
| MOD_MESHSEQ_READ_POLY = (1 << 1), | MOD_MESHSEQ_READ_POLY = (1 << 1), | ||||
| MOD_MESHSEQ_READ_UV = (1 << 2), | MOD_MESHSEQ_READ_UV = (1 << 2), | ||||
| MOD_MESHSEQ_READ_COLOR = (1 << 3), | MOD_MESHSEQ_READ_COLOR = (1 << 3), | ||||
| /* Allow interpolation of mesh vertex positions. There is a heuristic to avoid interpolation when | |||||
| * the mesh topology changes, but this heuristic sometimes fails. In these cases, users can | |||||
| * disable interpolation with this flag. */ | |||||
| MOD_MESHSEQ_INTERPOLATE_VERTICES = (1 << 4), | |||||
| }; | }; | ||||
| typedef struct SDefBind { | typedef struct SDefBind { | ||||
| unsigned int *vert_inds; | unsigned int *vert_inds; | ||||
| unsigned int numverts; | unsigned int numverts; | ||||
| int mode; | int mode; | ||||
| float *vert_weights; | float *vert_weights; | ||||
| float normal_dist; | float normal_dist; | ||||
| ▲ Show 20 Lines • Show All 83 Lines • Show Last 20 Lines | |||||