Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.h
| Show First 20 Lines • Show All 41 Lines • ▼ Show 20 Lines | |||||
| struct Scene; | struct Scene; | ||||
| struct ScrArea; | struct ScrArea; | ||||
| struct SnapObjectContext; | struct SnapObjectContext; | ||||
| struct TransConvertTypeInfo; | struct TransConvertTypeInfo; | ||||
| struct TransDataContainer; | struct TransDataContainer; | ||||
| struct TransInfo; | struct TransInfo; | ||||
| struct TransSnap; | struct TransSnap; | ||||
| struct ViewLayer; | struct ViewLayer; | ||||
| struct ViewOpsData; | |||||
| struct bContext; | struct bContext; | ||||
| struct wmEvent; | struct wmEvent; | ||||
| struct wmKeyConfig; | struct wmKeyConfig; | ||||
| struct wmKeyMap; | struct wmKeyMap; | ||||
| struct wmOperator; | struct wmOperator; | ||||
| struct wmTimer; | struct wmTimer; | ||||
| /** \} */ | /** \} */ | ||||
| ▲ Show 20 Lines • Show All 610 Lines • ▼ Show 20 Lines | typedef struct TransInfo { | ||||
| float zfac; | float zfac; | ||||
| void *draw_handle_view; | void *draw_handle_view; | ||||
| void *draw_handle_pixel; | void *draw_handle_pixel; | ||||
| void *draw_handle_cursor; | void *draw_handle_cursor; | ||||
| /** Currently only used for random curve of proportional editing. */ | /** Currently only used for random curve of proportional editing. */ | ||||
| struct RNG *rng; | struct RNG *rng; | ||||
| struct ViewOpsData *vod; | |||||
| /** Typically for mode settings. */ | /** Typically for mode settings. */ | ||||
| TransCustomDataContainer custom; | TransCustomDataContainer custom; | ||||
| /* Needed for sculpt transform. */ | /* Needed for sculpt transform. */ | ||||
| const char *undo_name; | const char *undo_name; | ||||
| } TransInfo; | } TransInfo; | ||||
| /** \} */ | /** \} */ | ||||
| ▲ Show 20 Lines • Show All 201 Lines • Show Last 20 Lines | |||||