Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/sculpt_intern.h
| Show First 20 Lines • Show All 412 Lines • ▼ Show 20 Lines | |||||
| void SCULPT_neighbor_coords_average(SculptSession *ss, float result[3], int index); | void SCULPT_neighbor_coords_average(SculptSession *ss, float result[3], int index); | ||||
| float SCULPT_neighbor_mask_average(SculptSession *ss, int index); | float SCULPT_neighbor_mask_average(SculptSession *ss, int index); | ||||
| void SCULPT_neighbor_color_average(SculptSession *ss, float result[4], int index); | void SCULPT_neighbor_color_average(SculptSession *ss, float result[4], int index); | ||||
| /* Mask the mesh boundaries smoothing only the mesh surface without using automasking. */ | /* Mask the mesh boundaries smoothing only the mesh surface without using automasking. */ | ||||
| void SCULPT_neighbor_coords_average_interior(SculptSession *ss, float result[3], int index); | void SCULPT_neighbor_coords_average_interior(SculptSession *ss, float result[3], int index); | ||||
| void SCULPT_smooth(Sculpt *sd, | void SCULPT_smooth(Sculpt *sd, Object *ob, PBVHNode **nodes, const int totnode, float bstrength); | ||||
| Object *ob, | |||||
| PBVHNode **nodes, | |||||
| const int totnode, | |||||
| float bstrength, | |||||
| const bool smooth_mask); | |||||
| void SCULPT_do_smooth_brush(Sculpt *sd, Object *ob, PBVHNode **nodes, int totnode); | void SCULPT_do_smooth_brush(Sculpt *sd, Object *ob, PBVHNode **nodes, int totnode); | ||||
| void SCULPT_do_smooth_mask_brush(Sculpt *sd, Object *ob, PBVHNode **nodes, int totnode); | |||||
| /* Surface Smooth Brush. */ | /* Surface Smooth Brush. */ | ||||
| void SCULPT_surface_smooth_laplacian_step(SculptSession *ss, | void SCULPT_surface_smooth_laplacian_step(SculptSession *ss, | ||||
| float *disp, | float *disp, | ||||
| const float co[3], | const float co[3], | ||||
| float (*laplacian_disp)[3], | float (*laplacian_disp)[3], | ||||
| const int v_index, | const int v_index, | ||||
| ▲ Show 20 Lines • Show All 563 Lines • Show Last 20 Lines | |||||