Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mball.h
| Show All 35 Lines | |||||
| struct MetaBall; | struct MetaBall; | ||||
| struct Object; | struct Object; | ||||
| struct Scene; | struct Scene; | ||||
| struct MetaElem; | struct MetaElem; | ||||
| void BKE_mball_free(struct MetaBall *mb); | void BKE_mball_free(struct MetaBall *mb); | ||||
| void BKE_mball_init(struct MetaBall *mb); | void BKE_mball_init(struct MetaBall *mb); | ||||
| struct MetaBall *BKE_mball_add(struct Main *bmain, const char *name); | struct MetaBall *BKE_mball_add(struct Main *bmain, const char *name); | ||||
| void BKE_mball_copy_data(struct Main *bmain, struct MetaBall *mb_dst, const struct MetaBall *mb_src, const int flag); | |||||
| struct MetaBall *BKE_mball_copy(struct Main *bmain, const struct MetaBall *mb); | struct MetaBall *BKE_mball_copy(struct Main *bmain, const struct MetaBall *mb); | ||||
| void BKE_mball_make_local(struct Main *bmain, struct MetaBall *mb, const bool lib_local); | void BKE_mball_make_local(struct Main *bmain, struct MetaBall *mb, const bool lib_local); | ||||
| bool BKE_mball_is_basis_for(struct Object *ob1, struct Object *ob2); | bool BKE_mball_is_basis_for(struct Object *ob1, struct Object *ob2); | ||||
| bool BKE_mball_is_basis(struct Object *ob); | bool BKE_mball_is_basis(struct Object *ob); | ||||
| struct Object *BKE_mball_basis_find(struct Scene *scene, struct Object *ob); | struct Object *BKE_mball_basis_find(struct Scene *scene, struct Object *ob); | ||||
| Show All 27 Lines | |||||