benoit-1842 Posted January 28, 2015 Share Posted January 28, 2015 can somebody explain to me what does infos mean when we are talking of a matrix inside .babylon :An array of 16 floats exposed with row first convention. What are the 16 floats ? And what they means ? I need to convert skeleton data coming from a Kinect 2 to a .babylon file but I need some info about how to do that...My info are coming has .json file that reads like that : x,y,z,qx,qy,qz,qw,..."shoulder" Thanx a lot and I love .babylon.js benoit Quote Link to comment Share on other sites More sharing options...
benoit-1842 Posted January 28, 2015 Author Share Posted January 28, 2015 Here's a type a file that I want to export to .baylon.js Is it possible or it's tough..... that's all the information I have right nowJson Raw Example 28.01.20151025.36.xml Quote Link to comment Share on other sites More sharing options...
GameMonetize Posted January 28, 2015 Share Posted January 28, 2015 Matrices in Babylon.js are 4x4 matrices packed in row order meaning that you can represent them like this:|m00 m01 m02 m03||m10 m11 m12 m13||m20 m21 m22 m23||m30 m31 m32 m33| with [m00 , m01 , m02 , m03, m10 , m11 , m12 , m13, m20, m21, m22, m23, m30, m31, m32 , m33] Quote Link to comment Share on other sites More sharing options...
benoit-1842 Posted January 29, 2015 Author Share Posted January 29, 2015 For example on a bone, what information goes in m00,m01 etc... Merci, Benoit Quote Link to comment Share on other sites More sharing options...
GameMonetize Posted January 29, 2015 Share Posted January 29, 2015 for a bone or anything else, a matrix contains..well a matrix http://en.wikipedia.org/wiki/Matrix Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.