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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mesh_relax.py')
-rw-r--r--mesh_relax.py29
1 files changed, 12 insertions, 17 deletions
diff --git a/mesh_relax.py b/mesh_relax.py
index affcbf05..cc752105 100644
--- a/mesh_relax.py
+++ b/mesh_relax.py
@@ -21,8 +21,19 @@
#
# ***** END GPL LICENCE BLOCK *****
-"""
+bl_addon_info = {
+ "name": "Mesh: Relax",
+ "author": "Fabian Fricke",
+ "version": "1.1 2010/04/22",
+ "blender": (2, 5, 3),
+ "location": "View3D > Specials > Relax ",
+ "description": "Relax the selected verts while retaining the shape",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Modeling/Relax",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=21421&group_id=153&atid=469",
+ "category": "Mesh"}
+"""
Usage:
Launch from "W-menu" or from "Mesh -> Vertices -> Relax"
@@ -31,25 +42,9 @@ Launch from "W-menu" or from "Mesh -> Vertices -> Relax"
Additional links:
Author Site: http://frigi.designdevil.de
e-mail: frigi.f {at} gmail {dot} com
-
"""
-bl_addon_info = {
- 'name': 'Mesh: Relax',
- 'author': 'Fabian Fricke',
- 'version': '1.1 2010/04/22',
- 'blender': (2, 5, 3),
- 'location': 'View3D > Specials > Relax ',
- 'description': 'Relax the selected verts while retaining the shape',
- 'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
- 'Scripts/Modeling/Relax',
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
- 'func=detail&aid=21421&group_id=153&atid=469',
- 'category': 'Mesh'}
-
-
import bpy
from bpy.props import IntProperty