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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-26 17:59:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-26 17:59:57 +0300
commita9fa6efcde330570bd9837a1085a34ef4aac3222 (patch)
treef6a4a98683960ba3d05aefca91b12ead944c7b7d /add_mesh_twisted_torus.py
parent9700b00900b672355c76fd8795221d05ff2e0140 (diff)
patch [#25632] Get rid of obsolete magic edit property
from Lawrence D'Oliveiro (ldo)
Diffstat (limited to 'add_mesh_twisted_torus.py')
-rw-r--r--add_mesh_twisted_torus.py82
1 files changed, 22 insertions, 60 deletions
diff --git a/add_mesh_twisted_torus.py b/add_mesh_twisted_torus.py
index d50fb20e..195dcad8 100644
--- a/add_mesh_twisted_torus.py
+++ b/add_mesh_twisted_torus.py
@@ -23,7 +23,7 @@
bl_info = {
"name": "Twisted Torus",
"author": "Paulo_Gomes",
- "version": (0,11),
+ "version": (0, 11, 1),
"blender": (2, 5, 3),
"api": 32411,
"location": "View3D > Add > Mesh ",
@@ -69,16 +69,10 @@ def align_matrix(context):
# verts/edges/faces ... List of vertices/edges/faces for the
# new mesh (as used in from_pydata).
# name ... Name of the new mesh (& object).
-# edit ... Replace existing mesh data.
-# Note: Using "edit" will destroy/delete existing mesh data.
-def create_mesh_object(context, verts, edges, faces, name, edit, align_matrix):
+def create_mesh_object(context, verts, edges, faces, name, align_matrix):
scene = context.scene
obj_act = scene.objects.active
- # Can't edit anything, unless we have an active obj.
- if edit and not obj_act:
- return None
-
# Create new mesh
mesh = bpy.data.meshes.new(name)
@@ -90,61 +84,34 @@ def create_mesh_object(context, verts, edges, faces, name, edit, align_matrix):
# Deselect all objects.
bpy.ops.object.select_all(action='DESELECT')
+ # Always create new object
+ ob_new = bpy.data.objects.new(name, mesh)
- if edit:
- # Replace geometry of existing object
-
- # Use the active obj and select it.
- ob_new = obj_act
- ob_new.select = True
-
- if obj_act.mode == 'OBJECT':
- # Get existing mesh datablock.
- old_mesh = ob_new.data
-
- # Set object data to nothing
- ob_new.data = None
-
- # Clear users of existing mesh datablock.
- old_mesh.user_clear()
+ # Link new object to the given scene and select it.
+ scene.objects.link(ob_new)
+ ob_new.select = True
- # Remove old mesh datablock if no users are left.
- if (old_mesh.users == 0):
- bpy.data.meshes.remove(old_mesh)
-
- # Assign new mesh datablock.
- ob_new.data = mesh
-
- else:
- # Create new object
- ob_new = bpy.data.objects.new(name, mesh)
-
- # Link new object to the given scene and select it.
- scene.objects.link(ob_new)
- ob_new.select = True
-
- # Place the object at the 3D cursor location.
- # apply viewRotaion
- ob_new.matrix_world = align_matrix
+ # Place the object at the 3D cursor location.
+ # apply viewRotaion
+ ob_new.matrix_world = align_matrix
if obj_act and obj_act.mode == 'EDIT':
- if not edit:
- # We are in EditMode, switch to ObjectMode.
- bpy.ops.object.mode_set(mode='OBJECT')
+ # We are in EditMode, switch to ObjectMode.
+ bpy.ops.object.mode_set(mode='OBJECT')
- # Select the active object as well.
- obj_act.select = True
+ # Select the active object as well.
+ obj_act.select = True
- # Apply location of new object.
- scene.update()
+ # Apply location of new object.
+ scene.update()
- # Join new object into the active.
- bpy.ops.object.join()
+ # Join new object into the active.
+ bpy.ops.object.join()
- # Switching back to EditMode.
- bpy.ops.object.mode_set(mode='EDIT')
+ # Switching back to EditMode.
+ bpy.ops.object.mode_set(mode='EDIT')
- ob_new = obj_act
+ ob_new = obj_act
else:
# We are in ObjectMode.
@@ -274,11 +241,6 @@ class AddTwistedTorus(bpy.types.Operator):
bl_label = "Add Torus"
bl_options = {'REGISTER', 'UNDO'}
- # edit - Whether to add or update.
- edit = BoolProperty(name="",
- description="",
- default=False,
- options={'HIDDEN'})
major_radius = FloatProperty(name="Major Radius",
description="Radius from the origin to the" \
" center of the cross section",
@@ -337,7 +299,7 @@ class AddTwistedTorus(bpy.types.Operator):
# Actually create the mesh object from this geometry data.
obj = create_mesh_object(context, verts, [], faces, "TwistedTorus",
- self.edit, self.align_matrix)
+ self.align_matrix)
return {'FINISHED'}