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:
authorDaniel Genrich <daniel.genrich@gmx.net>2012-10-24 14:39:11 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2012-10-24 14:39:11 +0400
commit3ce334e188affdeec3c492408075558e65f8244f (patch)
tree9e851da8755544d56a9b9ff0b0e9fb19904dfe46 /release/scripts/startup/bl_ui/properties_data_modifier.py
parentd739536103caada312a3681d106b9cc78af2d1fe (diff)
Merge GSoC project from branch: Laplacian Smooth (Operator & Modifier)
by Alexander Pinzon Fernandez (apinzonf) Supported by Google Summer of Code 2012 Project Documentation: http://wiki.blender.org/index.php/User:Apinzonf Manual Page: http://wiki.blender.org/index.php/User:Apinzonf/Doc:2.6/Manual/Modifiers/Deform/Laplacian_Smooth
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_modifier.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index c205edc0c3c..28d20bcb2d6 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -331,6 +331,20 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
row.operator("object.hook_select", text="Select")
row.operator("object.hook_assign", text="Assign")
+ def LAPLACIANSMOOTH(self, layout, ob, md):
+ layout.prop(md, "iterations")
+ layout.prop(md, "lamb")
+ layout.prop(md, "lambdaborder")
+ row = layout.row()
+ row.label(text="Axis: ")
+ row.prop(md, "use_x")
+ row.prop(md, "use_y")
+ row.prop(md, "use_z")
+ row = layout.row()
+ row.prop(md, "volume_preservation")
+ layout.label(text="Vertex Group:")
+ layout.prop_search(md, "vertex_group", ob, "vertex_groups", text="")
+
def LATTICE(self, layout, ob, md):
split = layout.split()