ecessarily reflect those
of NASA."
-Original Message-
From: ZACZEK, MARIUSZ P. (JSC-DM) (NASA)
Sent: Tuesday, November 19, 2002 10:55 AM
To: [EMAIL PROTECTED]
Subject: Re: [JAVA3D] extending Canvas3D
I tried the code addition in each of my 4 canvases (canvasi) but I still
have t
?
Mario
-Original Message-
From: George Hedges [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 9:36 AM
To: [EMAIL PROTECTED]
Subject: Re: [JAVA3D] extending Canvas3D
Hi Mariusz,
It may not be a problem with having multiple canvases.
We had a similar issue with our canvas. This
IL PROTECTED] and include in the body of the message "help".
> -Original Message-
> From: Discussion list for Java 3D API
> [mailto:[EMAIL PROTECTED]]On Behalf Of George Hedges
> Sent: Tuesday, November 19, 2002 10:36 AM
> To: [EMAIL PROTECTED]
> Subject: Re: [J
>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 8:17 AM
Subject: Re: [JAVA3D] extending Canvas3D
> Sorry..I have to take it all back...I double checked my code and I must
have
> been thinking about something else or I was just too stupid to double
check
> cor
ASA)
To: [EMAIL PROTECTED]
Sent: 11/17/2002 5:57 PM
Subject: [JAVA3D] extending Canvas3D
I'm having trouble with extending a Canvas3d...I've attached the code
where
I
extend the Canvas3D...I removed all my preRender() postSwap(), etc code
and
I
get the same effect as with having just the co
I'm having trouble with extending a Canvas3d...I've attached the code where
I
extend the Canvas3D...I removed all my preRender() postSwap(), etc code and
I
get the same effect as with having just the code below. Basically what
happens is that my Canvas3D and SWING seems to have problems ONLY if I
e
> 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
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){ } public Canvas3D
getCanvas(){ return this; }
}
It is telling me that:
Error : No constructor matching
C