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_pipe_joint.py')
-rw-r--r--add_mesh_pipe_joint.py26
1 files changed, 12 insertions, 14 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index f0f17300..3ebbf5d1 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -16,6 +16,18 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ "name": "Add Mesh: Pipe Joints",
+ "author": "Buerbaum Martin (Pontiac)",
+ "version": "0.10.5",
+ "blender": (2, 5, 3),
+ "location": "View3D > Add > Mesh > Pipe Joint",
+ "description": "Adds 5 pipe Joint types to the Add Mesh menu",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Add_Mesh/Add_Pipe_Joints",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=21443&group_id=153&atid=469",
+ "category": "Add Mesh"}
+
"""
Pipe Joints
This script lets the user create various types of pipe joints.
@@ -105,20 +117,6 @@ rotation_matrix = mathutils.RotationMatrix(-math.pi/2, 4, 'x')
mesh.transform(rotation_matrix)
"""
-bl_addon_info = {
- 'name': 'Add Mesh: Pipe Joints',
- 'author': 'Buerbaum Martin (Pontiac)',
- 'version': '0.10.5',
- 'blender': (2, 5, 3),
- 'location': 'View3D > Add > Mesh > Pipe Joint',
- 'description': 'Adds 5 pipe Joint types to the Add Mesh menu',
- '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_Pipe_Joints',
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
- 'func=detail&aid=21443&group_id=153&atid=469',
- 'category': 'Add Mesh'}
-
import bpy
import mathutils
from math import *