Claude Fuhrer wrote:
> Hello
>
> is it possible to write an application (not an applet) which use java3D
> ? If yes, can somebody give me a pointer to a simple code fragment ?
> (for example an applic which draw a cube)
>
> thank you for your help !
>
> claude
>
> ===========================================================================
> 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".
Just put a Main() in your applet class -like this:
public static void main(String[] args) {
new MainFrame(new MyAppletClass(), 700, 700);
}
, then you can run your application with: 'java myApp'
kind regards
Hardy Henneberg
===========================================================================
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".