Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_transform.h
| Show All 37 Lines | |||||
| struct ListBase; | struct ListBase; | ||||
| struct Object; | struct Object; | ||||
| struct View3D; | struct View3D; | ||||
| struct bContext; | struct bContext; | ||||
| struct wmEvent; | struct wmEvent; | ||||
| struct wmKeyConfig; | struct wmKeyConfig; | ||||
| struct wmKeyMap; | struct wmKeyMap; | ||||
| struct wmOperatorType; | struct wmOperatorType; | ||||
| struct WorkSpace; | |||||
| struct Main; | struct Main; | ||||
| struct SnapObjectContext; | struct SnapObjectContext; | ||||
| struct SnapObjectParams; | struct SnapObjectParams; | ||||
| void transform_keymap_for_space(struct wmKeyConfig *keyconf, struct wmKeyMap *keymap, int spaceid); | void transform_keymap_for_space(struct wmKeyConfig *keyconf, struct wmKeyMap *keymap, int spaceid); | ||||
| void transform_operatortypes(void); | void transform_operatortypes(void); | ||||
| /* ******************** Macros & Prototypes *********************** */ | /* ******************** Macros & Prototypes *********************** */ | ||||
| ▲ Show 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | |||||
| // int BIF_snappingSupported(struct Object *obedit); | // int BIF_snappingSupported(struct Object *obedit); | ||||
| struct TransformOrientation; | struct TransformOrientation; | ||||
| struct bContext; | struct bContext; | ||||
| struct ReportList; | struct ReportList; | ||||
| void BIF_clearTransformOrientation(struct bContext *C); | void BIF_clearTransformOrientation(struct bContext *C); | ||||
| void BIF_removeTransformOrientation(struct bContext *C, struct TransformOrientation *ts); | void BIF_removeTransformOrientation(struct bContext *C, struct TransformOrientation *ts); | ||||
| void BIF_removeTransformOrientationIndex(struct bContext *C, int index); | |||||
| void BIF_createTransformOrientation(struct bContext *C, struct ReportList *reports, | void BIF_createTransformOrientation(struct bContext *C, struct ReportList *reports, | ||||
| const char *name, const bool use_view, | const char *name, const bool use_view, | ||||
| const bool activate, const bool overwrite); | const bool activate, const bool overwrite); | ||||
| void BIF_selectTransformOrientation(struct bContext *C, struct TransformOrientation *ts); | void BIF_selectTransformOrientation(struct bContext *C, struct TransformOrientation *ts); | ||||
| void BIF_selectTransformOrientationValue(struct bContext *C, int orientation); | void BIF_selectTransformOrientationValue(struct WorkSpace *workspace, struct View3D *v3d, int orientation); | ||||
| void ED_getTransformOrientationMatrix(const struct bContext *C, float orientation_mat[3][3], const short around); | void ED_getTransformOrientationMatrix(const struct bContext *C, float orientation_mat[3][3], const short around); | ||||
| int BIF_countTransformOrientation(const struct bContext *C); | int BIF_countTransformOrientation(const struct bContext *C); | ||||
| /* to be able to add operator properties to other operators */ | /* to be able to add operator properties to other operators */ | ||||
| #define P_MIRROR (1 << 0) | #define P_MIRROR (1 << 0) | ||||
| ▲ Show 20 Lines • Show All 66 Lines • Show Last 20 Lines | |||||