Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_constraint.h
| Show First 20 Lines • Show All 114 Lines • ▼ Show 20 Lines | |||||
| /* ---------------------------------------------------------------------------- */ | /* ---------------------------------------------------------------------------- */ | ||||
| /* Constraint function prototypes */ | /* Constraint function prototypes */ | ||||
| void BKE_constraint_unique_name(struct bConstraint *con, struct ListBase *list); | void BKE_constraint_unique_name(struct bConstraint *con, struct ListBase *list); | ||||
| void BKE_constraints_free(struct ListBase *list); | void BKE_constraints_free(struct ListBase *list); | ||||
| void BKE_constraints_free_ex(struct ListBase *list, bool do_id_user); | void BKE_constraints_free_ex(struct ListBase *list, bool do_id_user); | ||||
| void BKE_constraints_copy(struct ListBase *dst, const struct ListBase *src, bool do_extern); | void BKE_constraints_copy(struct ListBase *dst, const struct ListBase *src, bool do_extern); | ||||
| void BKE_constraints_copy_ex(struct ListBase *dst, const struct ListBase *src, const int flag, bool do_extern); | |||||
| void BKE_constraints_id_loop(struct ListBase *list, ConstraintIDFunc func, void *userdata); | void BKE_constraints_id_loop(struct ListBase *list, ConstraintIDFunc func, void *userdata); | ||||
| void BKE_constraint_free_data(struct bConstraint *con); | void BKE_constraint_free_data(struct bConstraint *con); | ||||
| void BKE_constraint_free_data_ex(struct bConstraint *con, bool do_id_user); | void BKE_constraint_free_data_ex(struct bConstraint *con, bool do_id_user); | ||||
| /* Constraint API function prototypes */ | /* Constraint API function prototypes */ | ||||
| struct bConstraint *BKE_constraints_active_get(struct ListBase *list); | struct bConstraint *BKE_constraints_active_get(struct ListBase *list); | ||||
| void BKE_constraints_active_set(ListBase *list, struct bConstraint *con); | void BKE_constraints_active_set(ListBase *list, struct bConstraint *con); | ||||
| struct bConstraint *BKE_constraints_find_name(struct ListBase *list, const char *name); | struct bConstraint *BKE_constraints_find_name(struct ListBase *list, const char *name); | ||||
| Show All 28 Lines | |||||