Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_constraint.h
| Show First 20 Lines • Show All 185 Lines • ▼ Show 20 Lines | |||||
| /* Constraint Evaluation function prototypes */ | /* Constraint Evaluation function prototypes */ | ||||
| struct bConstraintOb *BKE_constraints_make_evalob(struct Depsgraph *depsgraph, | struct bConstraintOb *BKE_constraints_make_evalob(struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *ob, | struct Object *ob, | ||||
| void *subdata, | void *subdata, | ||||
| short datatype); | short datatype); | ||||
| void BKE_constraints_clear_evalob(struct bConstraintOb *cob); | void BKE_constraints_clear_evalob(struct bConstraintOb *cob); | ||||
| void BKE_constraint_mat_convertspace(struct Object *ob, | void BKE_constraint_mat_convertspace( | ||||
| struct bPoseChannel *pchan, | struct Object *ob, struct bPoseChannel *pchan, float mat[4][4], short from, short to); | ||||
| float mat[4][4], | |||||
| short from, | |||||
| short to, | |||||
| const bool keep_scale); | |||||
| void BKE_constraint_target_matrix_get(struct Depsgraph *depsgraph, | void BKE_constraint_target_matrix_get(struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct bConstraint *con, | struct bConstraint *con, | ||||
| int n, | int n, | ||||
| short ownertype, | short ownertype, | ||||
| void *ownerdata, | void *ownerdata, | ||||
| float mat[4][4], | float mat[4][4], | ||||
| Show All 16 Lines | |||||