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, | ||||
| } BooleanModifierOp; | } BooleanModifierOp; | ||||
| typedef enum { | |||||
| eBooleanModifierSolver_Carve = 0, | |||||
| eBooleanModifierSolver_BMesh = 1, | |||||
| } BooleanSolver; | |||||
| /* bm_flag (only used when G_DEBUG) */ | /* bm_flag (only used when G_DEBUG) */ | ||||
| enum { | enum { | ||||
| eBooleanModifierBMeshFlag_BMesh_Separate = (1 << 0), | eBooleanModifierBMeshFlag_BMesh_Separate = (1 << 0), | ||||
| eBooleanModifierBMeshFlag_BMesh_NoDissolve = (1 << 1), | eBooleanModifierBMeshFlag_BMesh_NoDissolve = (1 << 1), | ||||
| eBooleanModifierBMeshFlag_BMesh_NoConnectRegions = (1 << 2), | eBooleanModifierBMeshFlag_BMesh_NoConnectRegions = (1 << 2), | ||||
| }; | }; | ||||
| typedef struct MDefInfluence { | typedef struct MDefInfluence { | ||||
| ▲ Show 20 Lines • Show All 949 Lines • Show Last 20 Lines | |||||