Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Context not available. | |||||
| /* Normal Editing */ | /* Normal Editing */ | ||||
| float normal_vector[3]; | float normal_vector[3]; | ||||
| int face_strength; | int face_strength; | ||||
| char snap_increment_mode; | |||||
| char pad6[7]; | |||||
| } ToolSettings; | } ToolSettings; | ||||
| /* *************************************************************** */ | /* *************************************************************** */ | ||||
| Context not available. | |||||
| #define SCE_SNAP_NO_SELF 16 | #define SCE_SNAP_NO_SELF 16 | ||||
| #define SCE_SNAP_ABS_GRID 32 | #define SCE_SNAP_ABS_GRID 32 | ||||
| /* ToolSettings.snap_increment_mode */ | |||||
| #define SCE_SNAP_INCREMENT_TRANSLATE (1 << 0) | |||||
| #define SCE_SNAP_INCREMENT_ROTATE (1 << 1) | |||||
| #define SCE_SNAP_INCREMENT_SCALE (1 << 2) | |||||
| #define SCE_SNAP_INCREMENT_OVERRIDE (1 << 3) | |||||
| /* ToolSettings.snap_target */ | /* ToolSettings.snap_target */ | ||||
| #define SCE_SNAP_TARGET_CLOSEST 0 | #define SCE_SNAP_TARGET_CLOSEST 0 | ||||
| #define SCE_SNAP_TARGET_CENTER 1 | #define SCE_SNAP_TARGET_CENTER 1 | ||||
| Context not available. | |||||