Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/sculpt_paint/sculpt_intern.h
| Show First 20 Lines • Show All 825 Lines • ▼ Show 20 Lines | typedef struct FilterCache { | ||||
| /* Stores the displacement produced by the laplacian step of HC smooth. */ | /* Stores the displacement produced by the laplacian step of HC smooth. */ | ||||
| float (*surface_smooth_laplacian_disp)[3]; | float (*surface_smooth_laplacian_disp)[3]; | ||||
| float surface_smooth_shape_preservation; | float surface_smooth_shape_preservation; | ||||
| float surface_smooth_current_vertex; | float surface_smooth_current_vertex; | ||||
| /* Sharpen mesh filter. */ | /* Sharpen mesh filter. */ | ||||
| float sharpen_smooth_ratio; | float sharpen_smooth_ratio; | ||||
| float *sharpen_factor; | float *sharpen_factor; | ||||
| float (*accum_disp)[3]; | |||||
| /* unmasked nodes */ | /* unmasked nodes */ | ||||
| PBVHNode **nodes; | PBVHNode **nodes; | ||||
| int totnode; | int totnode; | ||||
| /* mask expand iteration caches */ | /* mask expand iteration caches */ | ||||
| int mask_update_current_it; | int mask_update_current_it; | ||||
| int mask_update_last_it; | int mask_update_last_it; | ||||
| ▲ Show 20 Lines • Show All 67 Lines • Show Last 20 Lines | |||||