Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.h
| Show First 20 Lines • Show All 80 Lines • ▼ Show 20 Lines | typedef struct TransSnap { | ||||
| short modePoint; | short modePoint; | ||||
| short modeSelect; | short modeSelect; | ||||
| bool align; | bool align; | ||||
| bool project; | bool project; | ||||
| bool snap_self; | bool snap_self; | ||||
| bool peel; | bool peel; | ||||
| bool snap_spatial_grid; | bool snap_spatial_grid; | ||||
| short status; | short status; | ||||
| short elem_type; | |||||
| /** snapping from this point (in global-space). */ | /** snapping from this point (in global-space). */ | ||||
| float snapPoint[3]; | float snapPoint[3]; | ||||
| /** to this point (in global-space). */ | /** to this point (in global-space). */ | ||||
| float snapTarget[3]; | float snapTarget[3]; | ||||
| float snapNormal[3]; | float snapNormal[3]; | ||||
| char snapNodeBorder; | char snapNodeBorder; | ||||
| ListBase points; | ListBase points; | ||||
| TransSnapPoint *selectedPoint; | TransSnapPoint *selectedPoint; | ||||
| ▲ Show 20 Lines • Show All 1,071 Lines • Show Last 20 Lines | |||||