Re: [JAVA3D] Deploying Swing Apps

2003-11-19 Thread David Grace
Hi, Just a note, with Webstart or applets the JRE can be made to automatically install and then run you application from a single url, similar to the Flash player. Dave. -Original Message- From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED] On Behalf Of William Denniss Sent:

Re: [JAVA3D] Exporting from Java3D!!

2003-11-19 Thread June
Hi Ben, You can try CyberVRML. http://www.cybergarage.org/vrml/cv97/cv97java/index.html This will let you read in 3DS and export as VRML which you could then convert back to 3DS if you need to. I'm not sure how much you would lose with all the conversions. If it doesn't do everything you want yo

Re: [JAVA3D] problem (possible bug) found using Switch

2003-11-19 Thread Mona Wong-Barnum
Hi Josh: Good suggestions, thank you. But that is more work than simply to just not add the null shape to the Switch so that's what I am opting to do (: But your suggestion is good. cheers, Mona > Why not extend the Switch class with your own that implements the > behaviour you

Re: [JAVA3D] show in canvas

2003-11-19 Thread Mona Wong-Barnum
Hi Kampon: I am not sure what your code is doing but it looks like you are trying to add a new canvas when you move the point? You do not need to add a new canvas each time you move objects... just manipulate the objects in the same canvas. Hope that helps. ch

Re: [JAVA3D] problem (possible bug) found using Switch

2003-11-19 Thread Josh Richmond
Hi Mona, Why not extend the Switch class with your own that implements the behaviour you expect. Then, you Switch class can maintain the indexing your prefer, keeping track of which nodes in the underlying switch are null. josh Joshua L. Richm

Re: [JAVA3D] show in canvas

2003-11-19 Thread Kampon Tangwaritorn
At first time I assign 10 points for it to show 10 points in canvas and sphere move from one point to the other. Next I want to change that 10 points to another positions and then let it show in canvas agian. And like this way so on. I can show it in the forst time when I use fix point After I ch