There is a TransfomGroup node that have (3, 0, 0)) by its translation component.
and then I made rotationinterpolator. Its target TG is above TransformGroup node.
however the rotationinterpolator rotates at origin.
Why?
Actually, TG has translation component (3, 0, 0).
Transform3D t3d = new Transform3D();
t3d.setTranslation(new Vector3f(3.0f, 0.0f, 0.0f));
TransformGroup objRotPos = new TransformGroup(t3d);
rotInterpolator = new RotationInterpolator(alpha, objRotPos);
Anyone Help me~~~~
