Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_deform.h
| Show All 24 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup bke | * \ingroup bke | ||||
| * \brief support for deformation groups and hooks. | * \brief support for deformation groups and hooks. | ||||
| */ | */ | ||||
| struct BlendDataReader; | struct BlendDataReader; | ||||
| struct BlendWriter; | struct BlendWriter; | ||||
| struct ID; | |||||
| struct ListBase; | struct ListBase; | ||||
| struct MDeformVert; | struct MDeformVert; | ||||
| struct MEdge; | struct MEdge; | ||||
| struct MLoop; | struct MLoop; | ||||
| struct MPoly; | struct MPoly; | ||||
| struct Object; | struct Object; | ||||
| struct bDeformGroup; | struct bDeformGroup; | ||||
| struct ID; | |||||
| bool BKE_object_supports_vertex_groups(const struct Object *ob); | bool BKE_object_supports_vertex_groups(const struct Object *ob); | ||||
| const struct ListBase *BKE_object_defgroup_list(const struct Object *ob); | const struct ListBase *BKE_object_defgroup_list(const struct Object *ob); | ||||
| struct ListBase *BKE_object_defgroup_list_mutable(struct Object *ob); | struct ListBase *BKE_object_defgroup_list_mutable(struct Object *ob); | ||||
| 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); | ||||
| ▲ Show 20 Lines • Show All 143 Lines • Show Last 20 Lines | |||||