[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [48043] branches/soc-2012-bratwurst/source /blender/assimp/SceneImporter.cpp: - bf_assimp: disable coordinate space rotation ( rotation by 90 deg around x to convert from assimp's RHS system to blender' s).

Alexander Gessler alexander.gessler at gmx.net
Mon Jun 18 18:02:38 CEST 2012


Revision: 48043
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48043
Author:   aramis_acg
Date:     2012-06-18 16:02:36 +0000 (Mon, 18 Jun 2012)
Log Message:
-----------
- bf_assimp: disable coordinate space rotation (rotation by 90 deg around x to convert from assimp's RHS system to blender's). I need to look into this later - right now, it breaks animations.

Modified Paths:
--------------
    branches/soc-2012-bratwurst/source/blender/assimp/SceneImporter.cpp

Modified: branches/soc-2012-bratwurst/source/blender/assimp/SceneImporter.cpp
===================================================================
--- branches/soc-2012-bratwurst/source/blender/assimp/SceneImporter.cpp	2012-06-18 15:42:23 UTC (rev 48042)
+++ branches/soc-2012-bratwurst/source/blender/assimp/SceneImporter.cpp	2012-06-18 16:02:36 UTC (rev 48043)
@@ -174,7 +174,7 @@
 	// blender uses right-handed z-up, y-into-screen coordinate system,
 	// assimp uses right-handled z-out-of-screen, z-up. All we need to
 	// do is a 90 degrees rotation around x.
-	rot.rotate_90deg_xpositive();
+	//rot.rotate_90deg_xpositive();
 }
 
 void SceneImporter::convert_armature() 




More information about the Bf-blender-cvs mailing list