Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_armature.h
| Show First 20 Lines • Show All 117 Lines • ▼ Show 20 Lines | |||||
| void BKE_armature_mat_pose_to_bone_ex(struct Object *ob, struct bPoseChannel *pchan, float inmat[4][4], float outmat[4][4]); | void BKE_armature_mat_pose_to_bone_ex(struct Object *ob, struct bPoseChannel *pchan, float inmat[4][4], float outmat[4][4]); | ||||
| void BKE_pchan_mat3_to_rot(struct bPoseChannel *pchan, float mat[3][3], bool use_compat); | void BKE_pchan_mat3_to_rot(struct bPoseChannel *pchan, float mat[3][3], bool use_compat); | ||||
| void BKE_pchan_apply_mat4(struct bPoseChannel *pchan, float mat[4][4], bool use_comat); | void BKE_pchan_apply_mat4(struct bPoseChannel *pchan, float mat[4][4], bool use_comat); | ||||
| void BKE_pchan_to_mat4(struct bPoseChannel *pchan, float chan_mat[4][4]); | void BKE_pchan_to_mat4(struct bPoseChannel *pchan, float chan_mat[4][4]); | ||||
| void BKE_pchan_calc_mat(struct bPoseChannel *pchan); | void BKE_pchan_calc_mat(struct bPoseChannel *pchan); | ||||
| void BKE_pose_computing_pchan_rest(struct bPoseChannel *pchan, float mat[3][3]); | |||||
| /* Get the "pchan to pose" transform matrix. These matrices apply the effects of | /* Get the "pchan to pose" transform matrix. These matrices apply the effects of | ||||
| * HINGE/NO_SCALE/NO_LOCAL_LOCATION options over the pchan loc/rot/scale transformations. */ | * HINGE/NO_SCALE/NO_LOCAL_LOCATION options over the pchan loc/rot/scale transformations. */ | ||||
| void BKE_pchan_to_pose_mat(struct bPoseChannel *pchan, float rotscale_mat[4][4], float loc_mat[4][4]); | void BKE_pchan_to_pose_mat(struct bPoseChannel *pchan, float rotscale_mat[4][4], float loc_mat[4][4]); | ||||
| /* Rotation Mode Conversions - Used for PoseChannels + Objects... */ | /* Rotation Mode Conversions - Used for PoseChannels + Objects... */ | ||||
| void BKE_rotMode_change_values(float quat[4], float eul[3], float axis[3], float *angle, short oldMode, short newMode); | void BKE_rotMode_change_values(float quat[4], float eul[3], float axis[3], float *angle, short oldMode, short newMode); | ||||
| /* B-Bone support */ | /* B-Bone support */ | ||||
| ▲ Show 20 Lines • Show All 77 Lines • Show Last 20 Lines | |||||