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 'add_mesh_3d_function_surface.py')
-rw-r--r--add_mesh_3d_function_surface.py28
1 files changed, 12 insertions, 16 deletions
diff --git a/add_mesh_3d_function_surface.py b/add_mesh_3d_function_surface.py
index a8db8d36..e6fa89a8 100644
--- a/add_mesh_3d_function_surface.py
+++ b/add_mesh_3d_function_surface.py
@@ -16,6 +16,18 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ "name": "Add Mesh: 3D Function Surfaces",
+ "author": "Buerbaum Martin (Pontiac)",
+ "version": "0.3.5",
+ "blender": (2, 5, 3),
+ "location": "View3D > Add > Mesh > Z Function Surface & XYZ Function Surface",
+ "description": "Create Objects using Math Formulas",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Mesh/Add_3d_Function_Surface",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=21444&group_id=153&atid=469",
+ "category": "Add Mesh"}
+
"""
Z Function Surface
@@ -81,25 +93,9 @@ v0.1 - Initial revision.
More Links:
http://gitorious.org/blender-scripts/blender-3d-function-surface
http://blenderartists.org/forum/showthread.php?t=179043
-
"""
-bl_addon_info = {
- 'name': 'Add Mesh: 3D Function Surfaces',
- 'author': 'Buerbaum Martin (Pontiac)',
- 'version': '0.3.5',
- 'blender': (2, 5, 3),
- 'location': 'View3D > Add > Mesh > Z Function Surface &' \
- ' XYZ Function Surface',
- 'description': 'Create Objects using Math Formulas',
- 'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
- 'Scripts/Add_Mesh/Add_3d_Function_Surface',
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
- 'func=detail&aid=21444&group_id=153&atid=469',
- 'category': 'Add Mesh'}
-
import bpy
from mathutils import *
from math import *