Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/intern/bmesh_opdefines.c
| Context not available. | |||||
| {"clear_inner", BMO_OP_SLOT_BOOL}, /* when enabled. remove all geometry on the negative side of the plane */ | {"clear_inner", BMO_OP_SLOT_BOOL}, /* when enabled. remove all geometry on the negative side of the plane */ | ||||
| {{'\0'}}, | {{'\0'}}, | ||||
| }, | }, | ||||
| {{"geom_cut.out", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT | BM_EDGE}}, /* output new geometry from the cut */ | {{"geom_cut.out", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT | BM_EDGE | BM_FACE}}, /* output new geometry from the cut */ | ||||
| {"geom.out", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT | BM_EDGE | BM_FACE}}, /* input and output geometry (result of cut) */ | {"geom.out", BMO_OP_SLOT_ELEMENT_BUF, {BM_VERT | BM_EDGE | BM_FACE}}, /* input and output geometry (result of cut), | ||||
| * added BM_FACE here for usage with fracture modifier */ | |||||
| {{'\0'}}}, | {{'\0'}}}, | ||||
| bmo_bisect_plane_exec, | bmo_bisect_plane_exec, | ||||
| (BMO_OPTYPE_FLAG_UNTAN_MULTIRES | | (BMO_OPTYPE_FLAG_UNTAN_MULTIRES | | ||||
| Context not available. | |||||
| {"offset_type", BMO_OP_SLOT_INT}, /* how to measure offset (enum) */ | {"offset_type", BMO_OP_SLOT_INT}, /* how to measure offset (enum) */ | ||||
| {"segments", BMO_OP_SLOT_INT}, /* number of segments in bevel */ | {"segments", BMO_OP_SLOT_INT}, /* number of segments in bevel */ | ||||
| {"profile", BMO_OP_SLOT_FLT}, /* profile shape, 0->1 (.5=>round) */ | {"profile", BMO_OP_SLOT_FLT}, /* profile shape, 0->1 (.5=>round) */ | ||||
| {"vertex_only", BMO_OP_SLOT_BOOL}, /* only bevel vertices, not edges */ | {"vertex_only", BMO_OP_SLOT_BOOL}, /* only bevel vertices, not edges */ | ||||
| {"clamp_overlap", BMO_OP_SLOT_BOOL}, /* do not allow beveled edges/vertices to overlap each other */ | |||||
| {"material", BMO_OP_SLOT_INT}, /* material for bevel faces, -1 means get from adjacent faces */ | {"material", BMO_OP_SLOT_INT}, /* material for bevel faces, -1 means get from adjacent faces */ | ||||
| {{'\0'}}, | {{'\0'}}, | ||||
| }, | }, | ||||
| Context not available. | |||||