I am having two different buffer geometries in same page both needs to be in sync of rotation. I am getting a rotation data “rotations” :[1,0,0,0,1,0,0,0,1] like this from server. With this dataset how can I do rotation because it has 9 values in it. Any idea?
Looks like a 3x3 matrix, eg.
[
1,0,0,
0,1,0,
0,0,1
]
Further more in its identity state with its base values set as they would be for an object with no rotation or transform…
Have a look at the Matrix3() class, if the data from the server is varying all the time I’m sure one possible way of achieving this would be to utilize the .getNormalMatrix() method of the class…
const m3 = new Matrix3()
const m4 = new Matrix4()
const setRotations(serverData) => {
m3.set(serverData)
m3.getNormalMatrix(m4)
object.quaternion.setFromRotationMatrix(m4)
}
2 Likes
Thanks for your solution