Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_key.h
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
| /* Kernel prototypes */ | /* Kernel prototypes */ | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| void BKE_key_free(struct Key *sc); | void BKE_key_free(struct Key *sc); | ||||
| void BKE_key_free_nolib(struct Key *key); | void BKE_key_free_nolib(struct Key *key); | ||||
| struct Key *BKE_key_add(struct ID *id); | struct Key *BKE_key_add(struct ID *id); | ||||
| void BKE_key_copy_data(struct Main *bmain, struct Key *key_dst, const struct Key *key_src, const int flag); | |||||
| struct Key *BKE_key_copy(struct Main *bmain, const struct Key *key); | struct Key *BKE_key_copy(struct Main *bmain, const struct Key *key); | ||||
| struct Key *BKE_key_copy_nolib(struct Key *key); | struct Key *BKE_key_copy_nolib(struct Key *key); | ||||
| void BKE_key_sort(struct Key *key); | void BKE_key_sort(struct Key *key); | ||||
| void key_curve_position_weights(float t, float data[4], int type); | void key_curve_position_weights(float t, float data[4], int type); | ||||
| void key_curve_tangent_weights(float t, float data[4], int type); | void key_curve_tangent_weights(float t, float data[4], int type); | ||||
| void key_curve_normal_weights(float t, float data[4], int type); | void key_curve_normal_weights(float t, float data[4], int type); | ||||
| ▲ Show 20 Lines • Show All 63 Lines • Show Last 20 Lines | |||||