Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemigiusz Fiedler <migius@gmx.net>2009-05-27 15:57:39 +0400
committerRemigiusz Fiedler <migius@gmx.net>2009-05-27 15:57:39 +0400
commit00ff608991dfc713662295e9b35fec6644f2f371 (patch)
tree60b55beba61558cb2f690eb2592ca590f118e8cd
parentfb7d688c1bd327f17b86ac74dab511bab40496df (diff)
DXF-importer update: v1.12 - 2009.05.26 by migius
- bugfix WORLDY(1,1,0) to (0,1,0)
-rw-r--r--release/scripts/import_dxf.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/release/scripts/import_dxf.py b/release/scripts/import_dxf.py
index ceb4dd56722..27a330d19fc 100644
--- a/release/scripts/import_dxf.py
+++ b/release/scripts/import_dxf.py
@@ -7,7 +7,7 @@ Group: 'Import'
Tooltip: 'Import for DWG/DXF geometry data.'
"""
__author__ = 'Kitsu(Ed Blake) & migius(Remigiusz Fiedler)'
-__version__ = '1.12 - 2009.04.11 by migius'
+__version__ = '1.12 - 2009.05.26 by migius'
__url__ = ["http://blenderartists.org/forum/showthread.php?t=84319",
"http://wiki.blender.org/index.php/Scripts/Manual/Import/DXF-3D"]
__email__ = ["migius(at)4d-vectors.de","Kitsune_e(at)yahoo.com"]
@@ -111,7 +111,8 @@ History:
-- support DXF-definitions of scene, lights and cameras
-- support ortho mode for VIEWs and VPORTs as cameras
-
+ v1.12 - 2009.05.26 by migius
+ d5 bugfix WORLDY(1,1,0) to (0,1,0)
v1.12 - 2009.04.11 by migius
d4 added DWG support, Stani Michiels idea for binding an extern DXF-DWG-converter
v1.12 - 2009.03.14 by migius
@@ -350,7 +351,7 @@ print 'DXF/DWG-Importer v%s *** start ***' %(__version__) #-------------------
SCENE = None
WORLDX = Mathutils.Vector((1,0,0))
-WORLDY = Mathutils.Vector((1,1,0))
+WORLDY = Mathutils.Vector((0,1,0))
WORLDZ = Mathutils.Vector((0,0,1))
G_SCALE = 1.0 #(0.0001-1000) global scaling factor for all dxf data