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:
authorLuca Bonavita <mindrones@gmail.com>2010-07-13 18:08:29 +0400
committerLuca Bonavita <mindrones@gmail.com>2010-07-13 18:08:29 +0400
commitb5cd123b04e6c46642b3e5617c8d354eb3eac744 (patch)
treed6c65fd5405eef61b0f6eb4f70702fabda76bfb7 /add_mesh_pipe_joint.py
parent2d092f168009d6d233ba43b91f1886f5bc53f5f1 (diff)
== trunk scripts confirming ==
- every script is now (2,5,3) - added warning field in bl_addon_info so every dev knows about this: when "warning" field is not empty, a warning icon appears and text alerts users about a buggy script (this is used during development, released scripts should must have this empty of course) - formatted scripts info like this - GPL - docstring - bl_addon_info - imports so that the actual script starts after the bl_addon_info dict - removed old 2.4x cruft like __url__, __bpydoc__, __author__ etc, not needed anymore (when the case integrated info with bl_addon_info and in case of one email meta just put it in the GPL) - next commits I plan to do contrib scripts and conform io scripts naming
Diffstat (limited to 'add_mesh_pipe_joint.py')
-rw-r--r--add_mesh_pipe_joint.py49
1 files changed, 25 insertions, 24 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index 68baca29..6fe34251 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -16,30 +16,7 @@
#
# ##### END GPL LICENSE BLOCK #####
-import bpy
-import mathutils
-from math import *
-from bpy.props import *
-
-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',
- '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'}
-
-# More links:
-# http://gitorious.org/blender-scripts/blender-pipe-joint-script
-# http://blenderartists.org/forum/showthread.php?t=154394
-
-__bpydoc__ = """
+"""
Pipe Joints
This script lets the user create various types of pipe joints.
@@ -117,6 +94,10 @@ v0.3 - Code for wye (Y) shape (straight pipe with "branch" for now)
v0.2 - Restructured to allow different types of pipe (joints).
v0.1 - Initial revision.
+More links:
+http://gitorious.org/blender-scripts/blender-pipe-joint-script
+http://blenderartists.org/forum/showthread.php?t=154394
+
TODO:
Use a rotation matrix for rotating the circle vertices:
@@ -124,6 +105,26 @@ 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 *
+from bpy.props import *
+
+
# Apply view rotation to objects if "Align To" for
# new objects was set to "VIEW" in the User Preference.
# Is now handled in the invoke functions