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
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
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
- ...
___