Vlad,
At 22:48 09.08.00 , you wrote:
>Frame fram = new Frame();
>Panel pan = new Panel();
>pan.add(canvas3d);
>fram.add(pan);
>fram.pack();
>fram.setVisible(true);
I haven't had time to test this, but it could be you're missing something
as simple as a Layout to make your Canvas3D visible. For simple nested
Panels and such, I like to use:
pan.setLayout(new BorderLayout());
pan.add(can3D, BorderLayout.CENTER);
Hope this helps,
-Carl-
===========================================================================
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".