Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
d9c6985b
Commit
d9c6985b
authored
15 years ago
by
Martin Buerbaum
Browse files
Options
Downloads
Patches
Plain Diff
* Version 0.9.10
* Use bl_addon_info for Add-On information.
parent
3ed99b48
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
add_mesh_pipe_joint.py
+15
-12
15 additions, 12 deletions
add_mesh_pipe_joint.py
with
15 additions
and
12 deletions
add_mesh_pipe_joint.py
+
15
−
12
View file @
d9c6985b
...
...
@@ -16,23 +16,25 @@
#
# ##### END GPL LICENSE BLOCK #####
# Blender Add-Ons menu registration (in User Prefs)
"
Add Pipe Joint (View3D > Add > Mesh > Pipe Joint)
"
import
bpy
import
Mathutils
from
math
import
*
from
bpy.props
import
*
"""
Name:
'
Pipe Joints
'
Blender: 250
"""
__author__
=
[
"
Buerbaum Martin (Pontiac)
"
]
__url__
=
[
"
http://gitorious.org/blender-scripts/blender-pipe-joint-script
"
,
"
http://blenderartists.org/forum/showthread.php?t=154394
"
,
"
http://wiki.blender.org/index.php/Extensions:Py/Scripts/Add/Pipe_Joint
"
]
__version__
=
'
0.9.9
'
bl_addon_info
=
{
'
name
'
:
'
Add Mesh: Pipe Joints
'
,
'
author
'
:
'
Buerbaum Martin (Pontiac)
'
,
'
version
'
:
'
0.9.10
'
,
'
blender
'
:
'
2.5.3
'
,
'
location
'
:
'
View3D > Add > Mesh > Pipe Joint
'
,
'
url
'
:
'
http://wiki.blender.org/index.php/Extensions:Py/Scripts/Add/Pipe_Joint
'
,
'
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.
...
...
@@ -44,6 +46,7 @@ The functionality can then be accessed via the
Note: Currently only the
"
Elbow
"
type supports odd number of vertices.
Version history:
v0.9.10 - Use bl_addon_info for Add-On information.
v0.9.9 - Changed the script so it can be managed from the
"
Add-Ons
"
tab in
the user preferences.
Added dummy
"
PLUGIN
"
icon.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment