Hi:
    I try to set the scale from one Transform3D A to another Transform3D B,  but sometimes when i get the scale from Transform3D A, the method getScale invert its scales.
    Somebody knows what's happening?
 
    TransformGroup tA;
    TransformGroup tB;
    Transform3D t3DA;
    Transform3D t3DB;
 
    tA.getTransform(t3DA);
    tB.getTransform(t3DB);
    t3DA.getScale(vector3D);
 
    t3DB.setScale(vector3D);
    tB.setTransform(t3DB);
 
Thks, Mart�n

Reply via email to