Login  Register

Re: Picking isn't detecting my TransformGroup being rotated

Posted by unixnerd on Aug 29, 2024; 11:40am
URL: https://forum.jogamp.org/Picking-isn-t-detecting-my-TransformGroup-being-rotated-tp4043508p4043510.html

It's a pretty huge bit of software alas. Everything is under the "tg" TransformGroup. I rotate with:
       
Transform3D sceneTrans = new Transform3D();
tg.getTransform(sceneTrans);

Transform3D zRot = new Transform3D();
zRot.rotZ(angle);
sceneTrans.mul(zRot);

tg.setTransform(sceneTrans);

I'm not doing anything with MouseRotate. Thanks for the help :-)