Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/armature/armature_intern.h
| Show First 20 Lines • Show All 226 Lines • ▼ Show 20 Lines | |||||
| /* duplicate method */ | /* duplicate method */ | ||||
| void preEditBoneDuplicate(struct ListBase *editbones); | void preEditBoneDuplicate(struct ListBase *editbones); | ||||
| void postEditBoneDuplicate(struct ListBase *editbones, struct Object *ob); | void postEditBoneDuplicate(struct ListBase *editbones, struct Object *ob); | ||||
| struct EditBone *duplicateEditBone(struct EditBone *curBone, | struct EditBone *duplicateEditBone(struct EditBone *curBone, | ||||
| const char *name, | const char *name, | ||||
| struct ListBase *editbones, | struct ListBase *editbones, | ||||
| struct Object *ob); | struct Object *ob); | ||||
| void updateDuplicateSubtarget(struct EditBone *dupBone, | |||||
| struct ListBase *editbones, | |||||
| struct Object *ob); | |||||
| /* duplicate method (cross objects) */ | /* duplicate method (cross objects) */ | ||||
| /* editbones is the target list */ | /* editbones is the target list */ | ||||
| struct EditBone *duplicateEditBoneObjects(struct EditBone *curBone, | struct EditBone *duplicateEditBoneObjects(struct EditBone *curBone, | ||||
| const char *name, | const char *name, | ||||
| struct ListBase *editbones, | struct ListBase *editbones, | ||||
| struct Object *src_ob, | struct Object *src_ob, | ||||
| struct Object *dst_ob); | struct Object *dst_ob); | ||||
| /* editbones is the source list */ | |||||
| void updateDuplicateSubtargetObjects(struct EditBone *dupBone, | |||||
| struct ListBase *editbones, | |||||
| struct Object *src_ob, | |||||
| struct Object *dst_ob); | |||||
| EditBone *add_points_bone(struct Object *obedit, float head[3], float tail[3]); | EditBone *add_points_bone(struct Object *obedit, float head[3], float tail[3]); | ||||
| void bone_free(struct bArmature *arm, struct EditBone *bone); | void bone_free(struct bArmature *arm, struct EditBone *bone); | ||||
| void armature_tag_select_mirrored(struct bArmature *arm); | void armature_tag_select_mirrored(struct bArmature *arm); | ||||
| void armature_select_mirrored_ex(struct bArmature *arm, const int flag); | void armature_select_mirrored_ex(struct bArmature *arm, const int flag); | ||||
| void armature_select_mirrored(struct bArmature *arm); | void armature_select_mirrored(struct bArmature *arm); | ||||
| void armature_tag_unselect(struct bArmature *arm); | void armature_tag_unselect(struct bArmature *arm); | ||||
| Show All 17 Lines | |||||