Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_meshdata_types.h
| Show First 20 Lines • Show All 271 Lines • ▼ Show 20 Lines | typedef struct MDisps { | ||||
| * Used for hiding parts of a multires mesh. | * Used for hiding parts of a multires mesh. | ||||
| * Essentially the multires equivalent of MVert.flag's ME_HIDE bit. | * Essentially the multires equivalent of MVert.flag's ME_HIDE bit. | ||||
| * | * | ||||
| * \note This is a bitmap, keep in sync with type used in BLI_bitmap.h | * \note This is a bitmap, keep in sync with type used in BLI_bitmap.h | ||||
| */ | */ | ||||
| unsigned int *hidden; | unsigned int *hidden; | ||||
| } MDisps; | } MDisps; | ||||
| /** Multires structs kept for compatibility with old files **/ | /** Multires structs kept for compatibility with old files. */ | ||||
| typedef struct MultiresCol { | typedef struct MultiresCol { | ||||
| float a, r, g, b; | float a, r, g, b; | ||||
| } MultiresCol; | } MultiresCol; | ||||
| typedef struct MultiresColFace { | typedef struct MultiresColFace { | ||||
| /* vertex colors */ | /* vertex colors */ | ||||
| MultiresCol col[4]; | MultiresCol col[4]; | ||||
| } MultiresColFace; | } MultiresColFace; | ||||
| Show All 32 Lines | typedef struct Multires { | ||||
| /* Special level 1 data that cannot be modified from other levels */ | /* Special level 1 data that cannot be modified from other levels */ | ||||
| CustomData vdata; | CustomData vdata; | ||||
| CustomData fdata; | CustomData fdata; | ||||
| short *edge_flags; | short *edge_flags; | ||||
| char *edge_creases; | char *edge_creases; | ||||
| } Multires; | } Multires; | ||||
| /** End Multires **/ | /* End Multires */ | ||||
| typedef struct MRecast { | typedef struct MRecast { | ||||
| int i; | int i; | ||||
| } MRecast; | } MRecast; | ||||
| typedef struct GridPaintMask { | typedef struct GridPaintMask { | ||||
| /* The data array contains gridsize*gridsize elements */ | /* The data array contains gridsize*gridsize elements */ | ||||
| float *data; | float *data; | ||||
| ▲ Show 20 Lines • Show All 116 Lines • Show Last 20 Lines | |||||