davidyannick Posted June 10, 2022 Share Posted June 10, 2022 I'd like to make a loop like this and I'm looking a way to rotate cubes like in this animation without using MOPS can you help me please ? Thanks rot_boxes.hiplc Quote Link to comment Share on other sites More sharing options...
konstantin magnus Posted June 10, 2022 Share Posted June 10, 2022 Hi David, in Houdini you would probably move and rotate the points in a wrangle: v@P.z -= @Time; matrix3 m = ident(); float amount = smooth(0.0, 1.0, v@P.z) * v@P.z; rotate(m, amount, {0,0,1}); p@orient = quaternion(m); rot_boxes_km.hipnc 1 1 Quote Link to comment Share on other sites More sharing options...
davidyannick Posted June 10, 2022 Author Share Posted June 10, 2022 45 minutes ago, konstantin magnus said: Hi David, in Houdini you would probably move and rotate the points in a wrangle: v@P.z -= @Time; matrix3 m = ident(); float amount = smooth(0.0, 1.0, v@P.z) * v@P.z; rotate(m, amount, {0,0,1}); p@orient = quaternion(m); rot_boxes_km.hipnc super thanks Konstatin ! 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.