Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_object.h
| Show First 20 Lines • Show All 281 Lines • ▼ Show 20 Lines | void BKE_object_eval_constraints(struct Depsgraph *depsgraph, | ||||
| struct Object *ob); | struct Object *ob); | ||||
| void BKE_object_eval_transform_final(struct Depsgraph *depsgraph, struct Object *ob); | void BKE_object_eval_transform_final(struct Depsgraph *depsgraph, struct Object *ob); | ||||
| bool BKE_object_eval_proxy_copy(struct Depsgraph *depsgraph, struct Object *object); | bool BKE_object_eval_proxy_copy(struct Depsgraph *depsgraph, struct Object *object); | ||||
| void BKE_object_eval_uber_transform(struct Depsgraph *depsgraph, struct Object *ob); | void BKE_object_eval_uber_transform(struct Depsgraph *depsgraph, struct Object *ob); | ||||
| void BKE_object_eval_uber_data(struct Depsgraph *depsgraph, | void BKE_object_eval_uber_data(struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *ob); | struct Object *ob); | ||||
| void BKE_object_eval_assign_data(struct Object *object, struct ID *data, bool is_owned); | |||||
| void BKE_object_eval_boundbox(struct Depsgraph *depsgraph, struct Object *object); | void BKE_object_eval_boundbox(struct Depsgraph *depsgraph, struct Object *object); | ||||
| void BKE_object_synchronize_to_original(struct Depsgraph *depsgraph, struct Object *object); | void BKE_object_synchronize_to_original(struct Depsgraph *depsgraph, struct Object *object); | ||||
| void BKE_object_eval_ptcache_reset(struct Depsgraph *depsgraph, | void BKE_object_eval_ptcache_reset(struct Depsgraph *depsgraph, | ||||
| struct Scene *scene, | struct Scene *scene, | ||||
| struct Object *object); | struct Object *object); | ||||
| Show All 23 Lines | |||||
| void BKE_object_sculpt_data_create(struct Object *ob); | void BKE_object_sculpt_data_create(struct Object *ob); | ||||
| int BKE_object_obdata_texspace_get(struct Object *ob, | int 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(const struct Depsgraph *depsgraph, struct Object *ob); | struct Mesh *BKE_object_get_evaluated_mesh(struct Object *object); | ||||
| struct Mesh *BKE_object_get_final_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); | ||||
| 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, | ||||
| ▲ Show 20 Lines • Show All 89 Lines • Show Last 20 Lines | |||||