Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_object.h
| Show First 20 Lines • Show All 330 Lines • ▼ Show 20 Lines | bool BKE_object_obdata_texspace_get(struct Object *ob, | ||||
| short **r_texflag, | short **r_texflag, | ||||
| float **r_loc, | float **r_loc, | ||||
| float **r_size); | float **r_size); | ||||
| struct Mesh *BKE_object_get_evaluated_mesh(struct Object *object); | struct Mesh *BKE_object_get_evaluated_mesh(struct Object *object); | ||||
| struct Mesh *BKE_object_get_pre_modified_mesh(struct Object *object); | struct Mesh *BKE_object_get_pre_modified_mesh(struct Object *object); | ||||
| struct Mesh *BKE_object_get_original_mesh(struct Object *object); | struct Mesh *BKE_object_get_original_mesh(struct Object *object); | ||||
| /* Lattice accessors. | |||||
| * These functions return either the regular lattice, or the edit-mode lattice, | |||||
| * whichever is currently in use. */ | |||||
| struct Lattice *BKE_object_get_lattice(const struct Object *object); | |||||
| struct Lattice *BKE_object_get_evaluated_lattice(const struct Object *object); | |||||
| int BKE_object_insert_ptcache(struct Object *ob); | int BKE_object_insert_ptcache(struct Object *ob); | ||||
| void BKE_object_delete_ptcache(struct Object *ob, int index); | void BKE_object_delete_ptcache(struct Object *ob, int index); | ||||
| struct KeyBlock *BKE_object_shapekey_insert(struct Main *bmain, | struct KeyBlock *BKE_object_shapekey_insert(struct Main *bmain, | ||||
| struct Object *ob, | struct Object *ob, | ||||
| const char *name, | const char *name, | ||||
| const bool from_mix); | const bool from_mix); | ||||
| bool BKE_object_shapekey_remove(struct Main *bmain, struct Object *ob, struct KeyBlock *kb); | bool BKE_object_shapekey_remove(struct Main *bmain, struct Object *ob, struct KeyBlock *kb); | ||||
| bool BKE_object_shapekey_free(struct Main *bmain, struct Object *ob); | bool BKE_object_shapekey_free(struct Main *bmain, struct Object *ob); | ||||
| ▲ Show 20 Lines • Show All 109 Lines • Show Last 20 Lines | |||||