Hi Jeremy,

Java3D for DirectX6.1 can run in full screen mode. Just set an
environment variable J3D_FULLSCREEN=TRUE. Maybe by now this is changed
to a command line option.

You can also use JWindow and set its bounds to the size of the screen.
Use a toolkit to find out the dimension of the screen.

Dimensions screensize = Toolkit.getDefaultToolkit().getScreenSize();
JWindow window = new JWindow();
window.setBounds(0, 0, screensize.width, screensize.height);

Bye, Simon

Jeremy Smoler wrote:
>
> Is it possible to run a Java 3D program in full screen mode?
>
> -Jeremy Smoler

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

Reply via email to