Re: [JAVA3D] PointArray example

2002-03-29 Thread Cristian Tota
Hi,   Here's your corrected file. That error was because you named your class PointArray, which is already defined in java3d (javax.media.j3d.PointArray). I also needed to correct other errors (Tip: Remember that Java is a case sensitive language). I sugest you look into some Java2 examples a

Re: [JAVA3D] PointArray example

2002-03-29 Thread Jürgen Vansteelant
thanx, it works now one has to start somewhere!     - Original Message - From: Enrique Dumas To: [EMAIL PROTECTED] Sent: Friday, March 29, 2002 12:09 PM Subject: Re: [JAVA3D] PointArray example Well, there are some errors in your code : - you sould

Re: [JAVA3D] PointArray example

2002-03-29 Thread Enrique Dumas
Well, there are some errors in your code : - you sould not call your class PointArray, thats why you have a compilation error... Call it PointArrayTest instead - no return at createScenegraph method - extends your class from Applet to give a sense at the init method - ...   ___