Skip to content
Snippets Groups Projects
Commit 0b7e48cb authored by Brendon Murphy's avatar Brendon Murphy
Browse files

changes by meta-androcto

bl_addon_info
change name to Add_Mesh: 3d_function_surface
(for consistancy with menu changes)
change link to wiki
parent 646cae43
No related branches found
No related tags found
No related merge requests found
...@@ -16,22 +16,24 @@ ...@@ -16,22 +16,24 @@
# #
# ##### END GPL LICENSE BLOCK ##### # ##### END GPL LICENSE BLOCK #####
# Blender Add-Ons menu registration (in User Prefs)
"3d Function Surface (View3D > Add > Mesh > 3D Function Surface)"
import bpy import bpy
import Mathutils import Mathutils
from math import * from math import *
from bpy.props import * from bpy.props import *
"""
Name: '3D Function Surface' bl_addon_info = {
Blender: 250 'name': 'Add_Mesh: 3D Function Surface',
""" 'author': 'Buerbaum Martin (Pontiac)',
__author__ = ["Buerbaum Martin (Pontiac)"] 'version': '0.2.3',
__url__ = ["http://gitorious.org/blender-scripts/blender-3d-function-surface", 'blender': '2.5.3',
"http://blenderartists.org/forum/showthread.php?t=179043"] 'location': 'View3D > Add > Mesh > 3D Function Surface',
__version__ = '0.2.1' 'url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_3d_Function_Surface',
'category': 'Add Mesh'}
# More Links:
# http://blenderartists.org/forum/showthread.php?t=179043
__bpydoc__ = """ __bpydoc__ = """
3D Function Surface 3D Function Surface
...@@ -46,6 +48,8 @@ The functionality can then be accessed via the ...@@ -46,6 +48,8 @@ The functionality can then be accessed via the
"Add Mesh" -> "3D Function Surface" menu. "Add Mesh" -> "3D Function Surface" menu.
Version history: Version history:
v0.2.3 - Use bl_addon_info for Add-On information.
v0.2.2 - Fixed Add-On registration text.
v0.2.1 - Fixed some new API stuff. v0.2.1 - Fixed some new API stuff.
Mainly we now have the register/unregister functions. Mainly we now have the register/unregister functions.
Also the new() function for objects now accepts a mesh object. Also the new() function for objects now accepts a mesh object.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment