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_3d_function_surface.py
parent982c970e3478dd6e0b81054fc7cd6826a515f561 (diff)
* Cleanup whitespaces.
Diffstat (limited to 'add_mesh_3d_function_surface.py')
-rw-r--r--add_mesh_3d_function_surface.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/add_mesh_3d_function_surface.py b/add_mesh_3d_function_surface.py
index 8828d366..9816e05d 100644
--- a/add_mesh_3d_function_surface.py
+++ b/add_mesh_3d_function_surface.py
@@ -182,12 +182,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
@@ -204,7 +204,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':
@@ -240,7 +240,7 @@ class AddZFunctionSurface(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})
@@ -472,7 +472,7 @@ class AddXYZFunctionSurface(bpy.types.Operator):
# edit - Whether to add or update.
edit = BoolProperty(name="",
- description="",
+ description="",
default=False,
options={'HIDDEN'})