Sergen Eren

Sergen Eren

About Me

専門知識
Developer
INDUSTRY
Film/TV

Connect

LOCATION
Bad Homburg, Germany
ウェブサイト

Houdini Skills

Availability

I am currently employed at Redshift3d

Recent Forum Posts

Rotating an object to align with world space 2019年3月13日19:26

If you can create an orthogonal frame by two vectors (i.e. find three points orthogonal to each other) you can create an orient attribute. inverting orient attribute and rotating @P by this inverse orient gets you world rotation

Mantra vs AMD Threadripper 2990wx 2019年3月13日10:25

Hi,

very interesting results in this topic. I'm also waiting for threadripper gen 3 to update my pc and will be on windows platform. I'm sure things will get better by that time but wonder if you had time to check coreprio (https://bitsum.com/portfolio/coreprio/)

maybe it can improve your render times

setting @orient with degrees 2019年3月13日10:08

what I usually do is:

matrix m = qconvert(p@orient);
vector zaxis = set(m.zx, m.zy, m.zz);
vector yaxis = set(m.yx, m.yy, m.yz);
vector xaxis = set(m.xx, m.xy, m.xz);
float amount = radians(degrees);
rotate(matrix, amount , xaxis //chose any axis );
p@orient = quaternion(m); 

to create a new orient with euler angles just start with an identity matrix