From: "zero" <[EMAIL PROTECTED]>
Sent: Wednesday, May 09, 2001 2:49 PM
> hi everyone,
> i am questioning myself. whether there is a way to get the
absolute
> "Transformation" (e.g. 4x4 Matrix) from one special Node in
the tree to actual
> TransformGroup..
I'm not sure I understand what you're asking for, but if you
need the RELATIVE transform from one node on the tree to
another, you can get it by
Transform3D T1;
Transform3D T2;
Node1.getLocalToVworld(T1); // T1 is the transform from
the locale to Node1
Node2.getLocalToVworld(T2); // T2 is the transform from
the locale to Node2
// to get the Transform3D of Node1 relative to Node2:
T1.mulInverse(T2);
Hope I understood your question...
Fred Klingener
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".