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:
Diffstat (limited to 'add_mesh_extra_objects/add_mesh_polysphere.py')
-rw-r--r--add_mesh_extra_objects/add_mesh_polysphere.py79
1 files changed, 0 insertions, 79 deletions
diff --git a/add_mesh_extra_objects/add_mesh_polysphere.py b/add_mesh_extra_objects/add_mesh_polysphere.py
deleted file mode 100644
index b01e741a..00000000
--- a/add_mesh_extra_objects/add_mesh_polysphere.py
+++ /dev/null
@@ -1,79 +0,0 @@
-# ##### BEGIN GPL LICENSE BLOCK #####
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# ##### END GPL LICENSE BLOCK #####
-'''
- "name": "Add PolySphere",
- "author": "Andy Davies (metalliandy)",
- "version": (0,1,6),
-'''
-
-import bpy
-
-def Add_PolySphere():
- #Add Cube to scene
- bpy.ops.mesh.primitive_cube_add()
-
- #Changes name of Cube to PolySphere adds the variable cube
- cube = bpy.context.object
- cube.name = "PolySphere"
-
- #Positions Cube primitive to scene centre
- bpy.context.active_object.location = [0, 0, 0]
-
- #Adds Subsurf Modifier
- bpy.ops.object.modifier_add(type='SUBSURF')
-
- #Selects Subsurf Modifier for editing
- subsurf = cube.modifiers['Subsurf']
-
- #Changes Subsurf levels
- subsurf.levels = 3
-
- #Applys Subsurf Modifier
- bpy.ops.object.modifier_apply(apply_as='DATA', modifier="Subsurf")
-
- #Adds smooth shading
- bpy.ops.object.shade_smooth()
-
- #Change to Editmode
- bpy.ops.object.editmode_toggle()
-
- #Selects cube in Editmode
- #bpy.ops.mesh.select_all(action='TOGGLE')
-
- #Adds transform "To Sphere"
- bpy.ops.transform.tosphere(value=1)
-
- #Change to Objectmode
- bpy.ops.object.editmode_toggle()
-
- #Scales Object to 2.0 Units
- bpy.ops.transform.resize(value=(1.15525, 1.15525, 1.15525), constraint_axis=(False, False, False), constraint_orientation='GLOBAL', mirror=False, proportional='DISABLED', proportional_edit_falloff='SMOOTH', proportional_size=1, snap=False, snap_target='CLOSEST', snap_point=(0, 0, 0), snap_align=False, snap_normal=(0, 0, 0), release_confirm=False)
-
- #Applys location, rotation and scale data
- bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
-
-#makes PolySphere an operator
-class AddPolySphere(bpy.types.Operator):
-
- bl_idname = "mesh.primitive_polysphere_add"
- bl_label = "Add PolySphere"
- bl_options = {'REGISTER', 'UNDO'}
-
- def execute(self, context):
- Add_PolySphere()
- return {'FINISHED'}