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_export_dxf/operator.py')
-rw-r--r--io_export_dxf/operator.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/io_export_dxf/operator.py b/io_export_dxf/operator.py
index b5d8d089..3ba7de60 100644
--- a/io_export_dxf/operator.py
+++ b/io_export_dxf/operator.py
@@ -67,7 +67,7 @@ class DXFExporter(bpy.types.Operator):
('..BLOCK', '..BLOCK', ''),
('..XDATA', '..XDATA', ''),
('..INI-File', '..INI-File', '')
- )
+ )
projectionItems=(
('NO', 'No projection', 'Export 3D scene without any 2D projection'),
('TOP', 'TOP view', 'Use TOP view for projection'),
@@ -150,10 +150,10 @@ class DXFExporter(bpy.types.Operator):
projectionThrough = EnumProperty(name="Projection", default="NO",
description="Select camera for use to 2D projection",
items=projectionItems)
-
+
onlySelected = BoolProperty(name="Only selected", default=True,
description="What object will be exported? Only selected / all objects")
-
+
apply_modifiers = BoolProperty(name="Apply modifiers", default=True,
description="Shall be modifiers applied during export?")
# GUI_B -----------------------------------------
@@ -225,7 +225,7 @@ class DXFExporter(bpy.types.Operator):
# description='Set default COLOR. (0=BYBLOCK,256=BYLAYER)')
# layerltype_def = StringProperty(name="Default LINETYPE", default="DEF_LAY_TYPE",
# description='Set default LINETYPE')
-
+
verbose = BoolProperty(name="Verbose", default=False,
description="Run the exporter in debug mode. Check the console for output")
@@ -249,9 +249,9 @@ class DXFExporter(bpy.types.Operator):
'entitylayer_from' : self.entitylayer_from,
'entitycolor_from' : self.entitycolor_from,
- 'entityltype_from' : self.entityltype_from,
+ 'entityltype_from' : self.entityltype_from,
'layerName_from' : self.layerName_from,
-
+
# NOT USED
# 'layFrozen_on' : self.layFrozen_on,
# 'materialFilter_on' : self.materialFilter_on,