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:
-rw-r--r--add_mesh_extra_objects/add_mesh_teapot.py14
-rw-r--r--add_mesh_extra_objects/add_mesh_torusknot.py16
2 files changed, 15 insertions, 15 deletions
diff --git a/add_mesh_extra_objects/add_mesh_teapot.py b/add_mesh_extra_objects/add_mesh_teapot.py
index 93030aa3..79178688 100644
--- a/add_mesh_extra_objects/add_mesh_teapot.py
+++ b/add_mesh_extra_objects/add_mesh_teapot.py
@@ -26,13 +26,13 @@
# ***** END GPL LICENCE BLOCK *****
bl_info = {
- "name": "Teapot+",
- "author": "Anthony D'Agostino",
- "version": (1, 0),
- "blender": (2, 5, 7),
- "location": "View3D > Add > Mesh ",
- "url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Teapot",
- "category": "Add Mesh"}
+ "name": "Teapot+",
+ "author": "Anthony D'Agostino",
+ "version": (1, 0),
+ "blender": (2, 5, 7),
+ "location": "View3D > Add > Mesh ",
+ "url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Teapot",
+ "category": "Add Mesh"}
'''
import bpy, mathutils, io, operator, functools
diff --git a/add_mesh_extra_objects/add_mesh_torusknot.py b/add_mesh_extra_objects/add_mesh_torusknot.py
index 2ce4b2a1..f289ddb2 100644
--- a/add_mesh_extra_objects/add_mesh_torusknot.py
+++ b/add_mesh_extra_objects/add_mesh_torusknot.py
@@ -26,14 +26,14 @@
# ***** END GPL LICENCE BLOCK *****
bl_info = {
- "name": "Torus Knot",
- "author": "Anthony D'Agostino",
- "version": (1, 0),
- "blender": (2, 5, 7),
- "location": "View3D > Add > Mesh ",
- "url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_TorusKnot",
- "category": "Add Mesh"}
-'''
+ "name": "Torus Knot",
+ "author": "Anthony D'Agostino",
+ "version": (1, 0),
+ "blender": (2, 5, 7),
+ "location": "View3D > Add > Mesh ",
+ "url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_TorusKnot",
+ "category": "Add Mesh"}
+'''
import bpy, mathutils, math
def create_mesh_object(context, verts, edges, faces, name):