Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_deform.h
| Show First 20 Lines • Show All 44 Lines • ▼ Show 20 Lines | |||||
| int BKE_object_defgroup_count(const struct Object *ob); | int BKE_object_defgroup_count(const struct Object *ob); | ||||
| int BKE_object_defgroup_active_index_get(const struct Object *ob); | int BKE_object_defgroup_active_index_get(const struct Object *ob); | ||||
| void BKE_object_defgroup_active_index_set(struct Object *ob, const int new_index); | void BKE_object_defgroup_active_index_set(struct Object *ob, const int new_index); | ||||
| const struct ListBase *BKE_id_defgroup_list_get(const struct ID *id); | const struct ListBase *BKE_id_defgroup_list_get(const struct ID *id); | ||||
| struct ListBase *BKE_id_defgroup_list_get_mutable(struct ID *id); | struct ListBase *BKE_id_defgroup_list_get_mutable(struct ID *id); | ||||
| int BKE_id_defgroup_name_index(const struct ID *id, const char *name); | int BKE_id_defgroup_name_index(const struct ID *id, const char *name); | ||||
| bool BKE_id_defgroup_name_find(const struct ID *id, | |||||
| const char *name, | |||||
| int *r_index, | |||||
| struct bDeformGroup **r_group); | |||||
| struct bDeformGroup *BKE_object_defgroup_new(struct Object *ob, const char *name); | struct bDeformGroup *BKE_object_defgroup_new(struct Object *ob, const char *name); | ||||
| void BKE_defgroup_copy_list(struct ListBase *outbase, const struct ListBase *inbase); | void BKE_defgroup_copy_list(struct ListBase *outbase, const struct ListBase *inbase); | ||||
| struct bDeformGroup *BKE_defgroup_duplicate(const struct bDeformGroup *ingroup); | struct bDeformGroup *BKE_defgroup_duplicate(const struct bDeformGroup *ingroup); | ||||
| struct bDeformGroup *BKE_object_defgroup_find_name(const struct Object *ob, const char *name); | struct bDeformGroup *BKE_object_defgroup_find_name(const struct Object *ob, const char *name); | ||||
| int *BKE_object_defgroup_flip_map(const struct Object *ob, | int *BKE_object_defgroup_flip_map(const struct Object *ob, | ||||
| int *flip_map_len, | int *flip_map_len, | ||||
| const bool use_default); | const bool use_default); | ||||
| ▲ Show 20 Lines • Show All 131 Lines • Show Last 20 Lines | |||||