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:
authorMartin Buerbaum <martin.buerbaum@gmx.at>2010-03-24 01:55:27 +0300
committerMartin Buerbaum <martin.buerbaum@gmx.at>2010-03-24 01:55:27 +0300
commit35f942d89be44b2d1156061348a97c6aa620dd26 (patch)
treec661e866676ebd888bbad10229a47555f93f6830 /add_mesh_pipe_joint.py
parent982c970e3478dd6e0b81054fc7cd6826a515f561 (diff)
* Cleanup whitespaces.
Diffstat (limited to 'add_mesh_pipe_joint.py')
-rw-r--r--add_mesh_pipe_joint.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/add_mesh_pipe_joint.py b/add_mesh_pipe_joint.py
index 4f09b5ac..31022731 100644
--- a/add_mesh_pipe_joint.py
+++ b/add_mesh_pipe_joint.py
@@ -199,12 +199,12 @@ def createObject(context, verts, faces, name, edit):
# Recreate geometry of existing object
obj_act = context.active_object
ob_new = obj_act
-
+
bpy.ops.object.mode_set(mode='EDIT')
bpy.ops.mesh.select_all(action='SELECT')
bpy.ops.mesh.delete(type='VERT')
bpy.ops.object.mode_set(mode='OBJECT')
-
+
ob_new.data = mesh
ob_new.selected = True
@@ -221,7 +221,7 @@ def createObject(context, verts, faces, name, edit):
ob_new.location = scene.cursor_location
obj_act = scene.objects.active
-
+
apply_view_rotation(context, ob_new)
if obj_act and obj_act.mode == 'EDIT':
@@ -258,7 +258,7 @@ class AddElbowJoint(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})
@@ -376,7 +376,7 @@ class AddTeeJoint(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})
@@ -571,7 +571,7 @@ class AddWyeJoint(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})
@@ -785,7 +785,7 @@ class AddCrossJoint(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})
@@ -1061,7 +1061,7 @@ class AddNJoint(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})