Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform_convert.h
| Show All 26 Lines | |||||
| struct BMEditMesh; | struct BMEditMesh; | ||||
| struct BMesh; | struct BMesh; | ||||
| struct BezTriple; | struct BezTriple; | ||||
| struct FCurve; | struct FCurve; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct Object; | struct Object; | ||||
| struct TransData; | struct TransData; | ||||
| struct TransDataCurveHandleFlags; | struct TransDataCurveHandleFlags; | ||||
| struct TransSeqSnapData; | |||||
| struct TransInfo; | struct TransInfo; | ||||
| struct bContext; | struct bContext; | ||||
| /* transform_convert.c */ | /* transform_convert.c */ | ||||
| void transform_autoik_update(TransInfo *t, short mode); | void transform_autoik_update(TransInfo *t, short mode); | ||||
| int special_transform_moving(TransInfo *t); | int special_transform_moving(TransInfo *t); | ||||
| void special_aftertrans_update(struct bContext *C, TransInfo *t); | void special_aftertrans_update(struct bContext *C, TransInfo *t); | ||||
| void sort_trans_data_dist(TransInfo *t); | void sort_trans_data_dist(TransInfo *t); | ||||
| void createTransData(struct bContext *C, TransInfo *t); | void createTransData(struct bContext *C, TransInfo *t); | ||||
| bool clipUVTransform(TransInfo *t, float vec[2], const bool resize); | bool clipUVTransform(TransInfo *t, float vec[2], const bool resize); | ||||
| void clipUVData(TransInfo *t); | void clipUVData(TransInfo *t); | ||||
| /* transform_convert_mesh.c */ | /* transform_convert_mesh.c */ | ||||
| void transform_convert_mesh_customdatacorrect_init(TransInfo *t); | void transform_convert_mesh_customdatacorrect_init(TransInfo *t); | ||||
| /* transform_convert_sequencer.c */ | /* transform_convert_sequencer.c */ | ||||
| int transform_convert_sequencer_get_snap_bound(TransInfo *t); | |||||
| void transform_convert_sequencer_channel_clamp(TransInfo *t); | void transform_convert_sequencer_channel_clamp(TransInfo *t); | ||||
| /********************* intern **********************/ | /********************* intern **********************/ | ||||
| /* transform_convert.c */ | /* transform_convert.c */ | ||||
| bool transform_mode_use_local_origins(const TransInfo *t); | bool transform_mode_use_local_origins(const TransInfo *t); | ||||
| void transform_around_single_fallback_ex(TransInfo *t, int data_len_all); | void transform_around_single_fallback_ex(TransInfo *t, int data_len_all); | ||||
| void transform_around_single_fallback(TransInfo *t); | void transform_around_single_fallback(TransInfo *t); | ||||
| void posttrans_fcurve_clean(struct FCurve *fcu, const int sel_flag, const bool use_handle); | void posttrans_fcurve_clean(struct FCurve *fcu, const int sel_flag, const bool use_handle); | ||||
| bool constraints_list_needinv(TransInfo *t, ListBase *list); | bool constraints_list_needinv(TransInfo *t, ListBase *list); | ||||
| ▲ Show 20 Lines • Show All 162 Lines • Show Last 20 Lines | |||||