> From: Zak <[EMAIL PROTECTED]>
>
> I am trying to make my own canvas and extending Canvas3D. This is the code.
>
> public class Globe3DCanvas extends Canvas3D{
>
>  public Globe3DCanvas(java.awt.GraphicsConfiguration c){
>
>  }

Add the line:

     super(c);

as the first line of the constructor to eliminate the problem. This passes the
graphics configuration to the Canva3D constructor.

Doug

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