Solved:right hand coordinate matrix to left hand coordinate?

You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers.
No questions about C++ programming or topics which are answered in the tutorials!
Post Reply
vivekSivamRP
Posts: 66
Joined: Sat Sep 29, 2012 11:58 am

Solved:right hand coordinate matrix to left hand coordinate?

Post by vivekSivamRP »

Hi all, i'm using blender for my 3D model which uses right-hand coordinate system, so when i try to import the model to irrlicht engine( left-hand coordinate system) the mesh and animation looks inverted in x axis.

(for ex, in blender my human Model performs animations in right hand but in irrlicht it does it on left hand side.)

so i'm trying convert the matrices from right hand coordinate to left hand. Can any one give some guidelines to proceed ?
Last edited by vivekSivamRP on Tue Dec 24, 2013 8:43 am, edited 2 times in total.
CuteAlien
Admin
Posts: 9840
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: right hand coordinate matrix to left hand coordinate?

Post by CuteAlien »

Generally importers should handle this. Which format are you using?
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
vivekSivamRP
Posts: 66
Joined: Sat Sep 29, 2012 11:58 am

Re: right hand coordinate matrix to left hand coordinate?

Post by vivekSivamRP »

we have written our own export plugin for animated model in blender .Animation ,appearance and everything works fine but works inverted in x axis.
In the export plugin , we have written the matrix for bones and models in blender format itself(right hand coordinate) , after exporting we import the model in irrlicht engine which works on left hand coordinate matrix.

So what we are trying is to convert Right handed to left handed matrix in export plugin itself.
CuteAlien
Admin
Posts: 9840
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: right hand coordinate matrix to left hand coordinate?

Post by CuteAlien »

I had to do that recently and found a solution here: http://stackoverflow.com/questions/1263 ... ate-system

It depends a little bit on your situation, but in my case Gerrit's answer was the one that had worked. In my case I had to swap axes z up to y up as well. So your solution might be on of the other ones mentioned there (which did not work for me...).

In pseudo-code (aka ruby...):

Code: Select all

 
t = [1,  0,  0,  0, 
     0,  0,  1,  0, 
     0,  -1,  0,  0,
     0,  0,  0,  1]
result =  multiplyMatrix4x4( result, t)              
t = [1,  0,  0,  0, 
     0,  0,  1,  0, 
     0,  1,  0,  0,
     0,  0,  0,  1]         
result =  multiplyMatrix4x4( t, result)
 
And don't ask me for an explanation - I was too lazy to work through this myself :-)
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
vivekSivamRP
Posts: 66
Joined: Sat Sep 29, 2012 11:58 am

[Solved] right hand coordinate matrix to left hand coordinat

Post by vivekSivamRP »

After following Gerrit's procedure , all the issues were solved. Thanks cuteAlien :-) And this problem taught me how important is, to go through matrix calculations.
Post Reply