Explaining in Detail the ScnVector4 method

梦想的初衷 提交于 2019-12-22 09:24:01

问题


I am using 3ds max for a long time and I know xyz axis. what I see in xcode in rotation the scnnode what made my mind blowed up is w component of scnvector4.

Can someone explain in detail how to use this method because I searched a lot of time but I can't make my object spin as I desire. anyone can help to make him spin to his back in 180 degree but I will appreciate if someone explain more for further rotations, Knowing that I saw this link but I didn't understand something.

http://www.cprogramming.com/tutorial/3d/rotationMatrices.html


回答1:


I believe that your are trying to rotate nodes (rotation property).

From the documentation :

The four-component rotation vector specifies the direction of the rotation axis in the first three components and the angle of rotation (in radians) in the fourth.

You might find it easier to use eulerAngles :

The node’s orientation, expressed as pitch, yaw, and roll angles, each in radians




回答2:


Use .transform to rotate a node

node.transform = SCNMatrix4Mult(node.transform, SCNMatrix4MakeRotation(angle, x, y, z))

if you want to rotate your node 180 degree by x axis

node.transform = SCNMatrix4Mult(node.transform, SCNMatrix4MakeRotation(Float(M_PI), 1, 0, 0))


来源:https://stackoverflow.com/questions/29019306/explaining-in-detail-the-scnvector4-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!