Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_brush_types.h
| Show First 20 Lines • Show All 479 Lines • ▼ Show 20 Lines | typedef struct Brush { | ||||
| /** Active grease pencil tool. */ | /** Active grease pencil tool. */ | ||||
| char gpencil_tool; | char gpencil_tool; | ||||
| /** Active grease pencil vertex tool. */ | /** Active grease pencil vertex tool. */ | ||||
| char gpencil_vertex_tool; | char gpencil_vertex_tool; | ||||
| /** Active grease pencil sculpt tool. */ | /** Active grease pencil sculpt tool. */ | ||||
| char gpencil_sculpt_tool; | char gpencil_sculpt_tool; | ||||
| /** Active grease pencil weight tool. */ | /** Active grease pencil weight tool. */ | ||||
| char gpencil_weight_tool; | char gpencil_weight_tool; | ||||
| char _pad1[2]; | char _pad1[6]; | ||||
| float autosmooth_factor; | float autosmooth_factor; | ||||
| float topology_rake_factor; | float topology_rake_factor; | ||||
| float crease_pinch_factor; | float crease_pinch_factor; | ||||
| float normal_radius_factor; | float normal_radius_factor; | ||||
| Show All 28 Lines | typedef struct Brush { | ||||
| /* cloth */ | /* cloth */ | ||||
| int cloth_deform_type; | int cloth_deform_type; | ||||
| int cloth_force_falloff_type; | int cloth_force_falloff_type; | ||||
| float cloth_mass; | float cloth_mass; | ||||
| float cloth_damping; | float cloth_damping; | ||||
| float cloth_tension; | |||||
| float cloth_shearing; | |||||
| float cloth_bending; | |||||
| float cloth_sim_limit; | float cloth_sim_limit; | ||||
| float cloth_sim_falloff; | float cloth_sim_falloff; | ||||
| /* smooth */ | /* smooth */ | ||||
| int smooth_deform_type; | int smooth_deform_type; | ||||
| float surface_smooth_shape_preservation; | float surface_smooth_shape_preservation; | ||||
| float surface_smooth_current_vertex; | float surface_smooth_current_vertex; | ||||
| int surface_smooth_iterations; | int surface_smooth_iterations; | ||||
| ▲ Show 20 Lines • Show All 329 Lines • Show Last 20 Lines | |||||