Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Dobarro <pablodp606@gmail.com>2019-09-07 00:14:57 +0300
committerPablo Dobarro <pablodp606@gmail.com>2019-09-09 16:34:25 +0300
commit70c1aaf59ba91eede3d519caf9052ca3ef94ea9b (patch)
tree88b2d726783a147e58b6160af2d9464b5a3ac13d /release
parent8127bbbe39cb10aae65883db94684791fbbd5aa9 (diff)
Sculpt: Elastic Deform Brush
This patch implements the paper "Regularized Kelvinlets: Sculpting Brushes based on Fundamental Solutions of Elasticity" https://graphics.pixar.com/library/Kelvinlets/paper.pdf It includes grab, biscale grab, triscale grab, scale and twist. All deformation modes are accessible under the same tool. This helps to keep the code organized and it should not make any difference to the user when a better brush management system is implemented. Reviewed By: brecht Differential Revision: https://developer.blender.org/D5634
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 89d771b7026..5bc4883d1ea 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -369,6 +369,13 @@ class VIEW3D_PT_tools_brush(Panel, View3DPaintPanel):
row = col.row()
row.prop(brush, "normal_radius_factor", slider=True)
+ if brush.sculpt_tool == 'ELASTIC_DEFORM':
+ col.separator()
+ row = col.row()
+ row.prop(brush, "elastic_deform_type")
+ row = col.row()
+ row.prop(brush, "elastic_deform_compressibility", slider=True)
+
# topology_rake_factor
if (
capabilities.has_topology_rake and