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-12-06 21:40:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-06 21:40:39 +0400
commit5da257ab5d6cfb0c2e2a3aa44a2dfa3b776901e0 (patch)
tree6f43e0f8b40288cada45d009529b9f868227d4d8 /add_mesh_extra_objects
parent07584de9c16ced5bbebbfcd44ebf4c04f00b3003 (diff)
minor edits
- remove check if sensor width exists for chan files - tag nuke chan files to be pep8 - remove unused import
Diffstat (limited to 'add_mesh_extra_objects')
-rw-r--r--add_mesh_extra_objects/add_mesh_pyramid.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/add_mesh_extra_objects/add_mesh_pyramid.py b/add_mesh_extra_objects/add_mesh_pyramid.py
index 5ea2a5e6..cba91729 100644
--- a/add_mesh_extra_objects/add_mesh_pyramid.py
+++ b/add_mesh_extra_objects/add_mesh_pyramid.py
@@ -32,13 +32,9 @@ bl_info = {
import bpy
-from bpy.props import (FloatVectorProperty,
- IntProperty,
- FloatProperty,
- BoolProperty)
+from bpy.props import IntProperty, FloatProperty
from add_utils import AddObjectHelper, add_object_data
-from mathutils import Vector
def makePyramid(initial_size, step_height, step_width, number_steps):