Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_modifier_types.h
| Show First 20 Lines • Show All 649 Lines • ▼ Show 20 Lines | typedef struct SurfaceModifierData { | ||||
| int cfra, numverts; | int cfra, numverts; | ||||
| } SurfaceModifierData; | } SurfaceModifierData; | ||||
| typedef struct BooleanModifierData { | typedef struct BooleanModifierData { | ||||
| ModifierData modifier; | ModifierData modifier; | ||||
| struct Object *object; | struct Object *object; | ||||
| char operation; | char operation; | ||||
| char solver; | char pad[2]; | ||||
| char pad; | |||||
| char bm_flag; | char bm_flag; | ||||
| float double_threshold; | float double_threshold; | ||||
| } BooleanModifierData; | } BooleanModifierData; | ||||
| typedef enum { | typedef enum { | ||||
| eBooleanModifierOp_Intersect = 0, | eBooleanModifierOp_Intersect = 0, | ||||
| eBooleanModifierOp_Union = 1, | eBooleanModifierOp_Union = 1, | ||||
| eBooleanModifierOp_Difference = 2, | eBooleanModifierOp_Difference = 2, | ||||
| ▲ Show 20 Lines • Show All 964 Lines • Show Last 20 Lines | |||||