Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_object.h
| Show All 28 Lines | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct Base; | struct Base; | ||||
| struct BoundBox; | struct BoundBox; | ||||
| struct Curve; | struct Curve; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct GeometrySet; | |||||
| struct GpencilModifierData; | struct GpencilModifierData; | ||||
| struct HookGpencilModifierData; | struct HookGpencilModifierData; | ||||
| struct HookModifierData; | struct HookModifierData; | ||||
| struct ID; | struct ID; | ||||
| struct Main; | struct Main; | ||||
| struct Mesh; | struct Mesh; | ||||
| struct ModifierData; | struct ModifierData; | ||||
| struct MovieClip; | struct MovieClip; | ||||
| Show All 19 Lines | void BKE_object_copy_particlesystems(struct Object *ob_dst, | ||||
| const int flag); | const int flag); | ||||
| void BKE_object_free_particlesystems(struct Object *ob); | void BKE_object_free_particlesystems(struct Object *ob); | ||||
| void BKE_object_free_softbody(struct Object *ob); | void BKE_object_free_softbody(struct Object *ob); | ||||
| void BKE_object_free_curve_cache(struct Object *ob); | void BKE_object_free_curve_cache(struct Object *ob); | ||||
| void BKE_object_free_derived_caches(struct Object *ob); | void BKE_object_free_derived_caches(struct Object *ob); | ||||
| void BKE_object_free_caches(struct Object *object); | void BKE_object_free_caches(struct Object *object); | ||||
| void BKE_object_preview_geometry_set_add(struct Object *ob, | |||||
| const uint64_t key, | |||||
| struct GeometrySet *geometry_set); | |||||
| void BKE_object_modifier_hook_reset(struct Object *ob, struct HookModifierData *hmd); | void BKE_object_modifier_hook_reset(struct Object *ob, struct HookModifierData *hmd); | ||||
| void BKE_object_modifier_gpencil_hook_reset(struct Object *ob, | void BKE_object_modifier_gpencil_hook_reset(struct Object *ob, | ||||
| struct HookGpencilModifierData *hmd); | struct HookGpencilModifierData *hmd); | ||||
| bool BKE_object_modifier_gpencil_use_time(struct Object *ob, struct GpencilModifierData *md); | bool BKE_object_modifier_gpencil_use_time(struct Object *ob, struct GpencilModifierData *md); | ||||
| bool BKE_object_shaderfx_use_time(struct Object *ob, struct ShaderFxData *md); | bool BKE_object_shaderfx_use_time(struct Object *ob, struct ShaderFxData *md); | ||||
| bool BKE_object_supports_modifiers(const struct Object *ob); | bool BKE_object_supports_modifiers(const struct Object *ob); | ||||
| ▲ Show 20 Lines • Show All 382 Lines • Show Last 20 Lines | |||||