Index: tri_import_export.py
===================================================================
--- tri_import_export.py	(revision 1120)
+++ tri_import_export.py	(revision 1121)
@@ -88,8 +88,8 @@
         n=face.normal.copy()
     
     if all_scene:
-        v = (v * rot)
-        n = n * qrot
+        v = (rot * v)
+        n = qrot * n
 
     f.write("%+0f %+0f %+0f"%(v[0],v[1],v[2]))
     f.write("  %+0f %+0f %+0f"%(n[0],n[1],n[2]))