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:
authorCampbell Barton <ideasman42@gmail.com>2010-02-02 02:52:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-02 02:52:46 +0300
commit53d425ef968b0cbe5155f182febdf8f1cf948534 (patch)
tree6e284ef5f9b6735fcf66c807157b0b9175fec60a /release
parent039d0871716e2134913b47ec4dbdcebaefb8edcc (diff)
obj export broke since api updates to mathutils
Diffstat (limited to 'release')
-rw-r--r--release/scripts/io/export_obj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/io/export_obj.py b/release/scripts/io/export_obj.py
index abc7c5a6379..241325c7d33 100644
--- a/release/scripts/io/export_obj.py
+++ b/release/scripts/io/export_obj.py
@@ -370,7 +370,7 @@ def write(filename, objects, scene,
file.write('mtllib %s\n' % ( mtlfilename.split('\\')[-1].split('/')[-1] ))
if EXPORT_ROTX90:
- mat_xrot90= Mathutils.RotationMatrix(-math.pi/2, 4, 'x')
+ mat_xrot90= Mathutils.RotationMatrix(-math.pi/2, 4, 'X')
# Initialize totals, these are updated each object
totverts = totuvco = totno = 1