Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_paint.h
| Show First 20 Lines • Show All 259 Lines • ▼ Show 20 Lines | typedef struct SculptSession { | ||||
| /* Cursor data and active vertex for tools */ | /* Cursor data and active vertex for tools */ | ||||
| int active_vertex_index; | int active_vertex_index; | ||||
| float cursor_radius; | float cursor_radius; | ||||
| float cursor_location[3]; | float cursor_location[3]; | ||||
| float cursor_normal[3]; | float cursor_normal[3]; | ||||
| float cursor_view_normal[3]; | float cursor_view_normal[3]; | ||||
| /* TODO(jbakker): Replace rv3d adn v3d with ViewContext */ | |||||
| struct RegionView3D *rv3d; | struct RegionView3D *rv3d; | ||||
| struct View3D *v3d; | |||||
| /* Dynamic mesh preview */ | /* Dynamic mesh preview */ | ||||
| int *preview_vert_index_list; | int *preview_vert_index_list; | ||||
| int preview_vert_index_count; | int preview_vert_index_count; | ||||
| float pose_origin[3]; | float pose_origin[3]; | ||||
| /* Transform operator */ | /* Transform operator */ | ||||
| float pivot_pos[3]; | float pivot_pos[3]; | ||||
| ▲ Show 20 Lines • Show All 69 Lines • Show Last 20 Lines | |||||