Re: [JAVA3D] How to have a shape on other shape

2005-04-29 Thread Omer Haybat
Oke... but what is if i want to have an orientedShape with constant scaling
and just 1 meter above it a raster image with text also constant scaled. if
i zoom in the distance between the objects will no longer be 1 meter.

===
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.


Re: [JAVA3D] How to have a shape on other shape

2005-04-28 Thread Hrvoje Smolic
What exactly is on your mind? You are working in 3D here... If you want to
put something near other object (or on a top of it), you define
TransformGroup for each object and Transform3D, too. Then you can put one
object on location (1,0,0) and other on (1,1,0), for example.
...
..
Transforme3D trans = nre Transform3D();
trans.setTranslation(new Vector3f(1f,0,0));
...
..
...

===
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.