Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Explaining in Detail the ScnVector4 method

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

like image 255
FamousMaxy Avatar asked Mar 13 '26 10:03

FamousMaxy


2 Answers

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

like image 141
mnuages Avatar answered Mar 15 '26 01:03

mnuages


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))
like image 33
mysofacc Avatar answered Mar 15 '26 00:03

mysofacc



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!