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 'io_import_dxf/dxfimport/is_.py')
-rw-r--r--io_import_dxf/dxfimport/is_.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/io_import_dxf/dxfimport/is_.py b/io_import_dxf/dxfimport/is_.py
index 38928aa0..20d6fe43 100644
--- a/io_import_dxf/dxfimport/is_.py
+++ b/io_import_dxf/dxfimport/is_.py
@@ -18,6 +18,9 @@
# <pep8 compliant>
+from mathutils import Vector
+
+
_MESH_ENTITIES = frozenset(["POLYFACE", "POLYMESH", "MESH", "POINT", "3DFACE", "SOLID", "TRACE"])
@@ -28,11 +31,15 @@ def mesh_entity(entity):
def mesh(typestr):
return typestr in _MESH_ENTITIES
+_POLYS = frozenset(["LWPOLYLINE", "POLYLINE"])
+
+def closed_poly_no_bulge(entity):
+ return entity.dxftype in _POLYS and not any([b != 0 for b in entity.bulge]) and entity.is_closed
+
_CURVE_ENTITIES = frozenset(("POLYLINE", "POLYGON", "LWPOLYLINE", "SPLINE",
"CIRCLE", "ARC", "ELLIPSE", "LINE", "HELIX"))
-
def curve_entity(entity):
return entity.dxftype in _CURVE_ENTITIES
@@ -127,3 +134,8 @@ def combined_entity(entity):
def combined(typestr):
return typestr not in _NOT_COMBINED_ENTITIES
+
+
+def extrusion(entity):
+ return Vector(entity.extrusion) != Vector((0, 0, 1)) \
+ or (hasattr(entity, "elevation") and entity.elevation != 0) \ No newline at end of file