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>2012-05-21 00:37:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-21 00:37:41 +0400
commit5b8fd09b3310ad60999c13e7048781e2b556a7f7 (patch)
treecdd8ff02ea696567b4623baf3b50954c3ecc4777 /io_scene_x3d
parent976e57ceb39ab25b0848dde6b3bae3883eeab048 (diff)
fix for error in calling cylinder operator
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/import_x3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_x3d/import_x3d.py b/io_scene_x3d/import_x3d.py
index 4ba71042..ebbbbde0 100644
--- a/io_scene_x3d/import_x3d.py
+++ b/io_scene_x3d/import_x3d.py
@@ -1938,7 +1938,7 @@ def importMesh_Cylinder(geom, ancestry):
bpy.ops.mesh.primitive_cylinder_add(vertices=GLOBALS['CIRCLE_DETAIL'],
radius=diameter,
depth=height,
- cap_ends=True,
+ end_fill_type='NGON',
view_align=False,
enter_editmode=False,
)