Re: [JAVA3D] OrientedShape3D behaving abnormally

2003-04-03 Thread Alessandro Borges
Hi Martin You must put you orientedShape in a TG, then add this TG to your BG. So it will work fine. // set up a fresh new TG TransformGroup tg1 = new TransformGroup(); tg1.addChild(orientedShape); // add you orientedShape content.addChild(tg1); // add your tg1 to BG //content.addChild

Re: [JAVA3D] Java rmic

2003-04-03 Thread Anirban Bhadore
c:\temp>rmic MyServer after MyServer.class is generated from MyServer.java with javac command. MyServer is the class which extends UnicastRemoteObject. since java1.2 you dont need the skeleton, stub class file should be present both on server and client sides. for details refer to http://java.sun

Re: [JAVA3D] RE : [JAVA3D] RE : [JAVA3D] JDialog and Java3D

2003-04-03 Thread Brandon
Don't have time to search through your code, but are you creating the canvas at creation time but not at viewing time? In other words you create the dialog and canvas, but you don't show either (you show them later)? In my experience I could never create a canvas3d and not show it, so I always had

[JAVA3D] Java rmic

2003-04-03 Thread Isaac Brobbey
Dear All: Can anyone show me how to Run the rmic Compiler to Obtain the Stub and Skeleton .class Files for the remote method invocation ? Thanks. Isaac Brobbey Java2 & Java3D MS/CIT Project === To unsubscribe, send email to

[JAVA3D] OrientedShape3D behaving abnormally

2003-04-03 Thread Martin Traverso
Hi, I was playing around with OrientedShape3Ds, and I set up a very simple program to see how they worked. The program creates a scene graph with two squares, one is a regular Shape3D and the other an OrientedShape3D. I'm using OrbitBehavior to orbit around the squares. Well, it doesn't seem to b

Re: [JAVA3D] Question about the AxisAngle class

2003-04-03 Thread Joerg 'Herkules' Plewe
> Transform3D foo = new Transform3D(); > // Constructing a vector pointed downward and to the lower left > // with no rotation > AxisAngle4f axisAngle = new AxisAngle4f(-1, -1, -1, (float)0); > foo.setRotation(axisAngle); You are just rotating by 0 degree. That can be done perfectly by the identit

[JAVA3D] Question about the AxisAngle class

2003-04-03 Thread David Ben-Yaacov
Consider the following code: Transform3D foo = new Transform3D(); // Constructing a vector pointed downward and to the lower left // with no rotation AxisAngle4f axisAngle = new AxisAngle4f(-1, -1, -1, (float)0); foo.setRotation(axisAngle); After the code is run, why is foo still the identity mat

Re: [JAVA3D] Best way to generate animation files (.mov) from a scenegraph ... or VRML

2003-04-03 Thread P. Flavin
Movies are made with Java3d with the Sun JMF & Sun VRML Loaders --- and the NCSA screen capture tool and important work has been done supported in part by the US tax payers through the US NIST & US NSF including Finger Spelling for the Deaf animations using Web3d.org'

Re: [JAVA3D] Best way to generate animation files (.mov) from a scenegraph ... or VRML

2003-04-03 Thread P. Flavin
Movies are made with Java3d with the Sun JMF & Sun VRML Loaders --- and the NCSA screen capture tool and important work has been done supported in part by the US tax payers through the US NIST & US NSF including Finger Spelling for the Deaf animations using Web3d.org'

[JAVA3D] RE : [JAVA3D] RE : [JAVA3D] JDialog and Java3D

2003-04-03 Thread Arnaud Forgues
Sorry, Better with attachments ! Arnaud -Message d'origine- De : Discussion list for Java 3D API [mailto:[EMAIL PROTECTED] De la part de Kevin Glass Envoyé : jeudi 3 avril 2003 09:39 À : [EMAIL PROTECTED] Objet : Re: [JAVA3D] RE : [JAVA3D] JDialog and Java3D Most likely this is to do wi

[JAVA3D] RE : [JAVA3D] RE : [JAVA3D] JDialog and Java3D

2003-04-03 Thread Arnaud Forgues
Hi Kevin, Here are the two main classes I use to create my diaolog frame (JChessPromoteDialog) with 3d scene (JChessPromote3D) in it. The problem is that I want to have this Dialog modal to force user selecting a chess Piece in order to do pawn promotion (I am programming a 3d chess game) Thanks

[JAVA3D] RE : [JAVA3D] RE : [JAVA3D] JDialog and Java3D

2003-04-03 Thread Arnaud Forgues
Hi Todd, In fact, the JDialog containing a canvas3D is frozen (I have 4 JRadioButton, a JButton, a JLabel and a JPanel with Canvas3D in it. And I cannot click on the different buttons) and doesn't render this canvas. The frame containing the other canvas3D, which is parent of the JDialog, is rende

Re: [JAVA3D] Modifying java source

2003-04-03 Thread hterrolle
i am not use to overcharge. i think the bug is deeper so i want to be able to debug the code. -Message d'origine-De : Florin Herinean <[EMAIL PROTECTED]>À : [EMAIL PROTECTED] <[EMAIL PROTECTED]>Date : jeudi 3 avril 2003 12:25Objet : [JAVA3D] AW: [JAVA3D] Modifying java

[JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread Florin Herinean
public class MyJEditorPane extends JEditorPane ... -Ursprüngliche Nachricht-Von: hterrolle [mailto:[EMAIL PROTECTED]Gesendet: Donnerstag, 3. April 2003 12:12An: [EMAIL PROTECTED]Betreff: Re: [JAVA3D] Modifying java source what do you means by subclass ? -Message

Re: [JAVA3D] Modifying java source

2003-04-03 Thread hterrolle
what do you means by subclass ? -Message d'origine-De : Florin Herinean <[EMAIL PROTECTED]>À : [EMAIL PROTECTED] <[EMAIL PROTECTED]>Date : jeudi 3 avril 2003 12:07Objet : [JAVA3D] AW: [JAVA3D] AW: [JAVA3D] Modifying java source And there is no posibility that you c

[JAVA3D] AW: [JAVA3D] AW: [JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread Florin Herinean
BE CAREFULL ! You have a version mismatch between jre and jdk ! My rt.jar is the same in both jdk and jre.   Cheers,   Florin -Ursprüngliche Nachricht-Von: hterrolle [mailto:[EMAIL PROTECTED]Gesendet: Donnerstag, 3. April 2003 11:56An: [EMAIL PROTECTED]Betreff: Re: [JAVA3D]

[JAVA3D] AW: [JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread Florin Herinean
And there is no posibility that you can just subclass JEditorPane and fix the bug in your class ? That will make your app portable, while changing the jre/jdk will directly prohibit that. -Ursprüngliche Nachricht-Von: hterrolle [mailto:[EMAIL PROTECTED]Gesendet: Donnerstag, 3. A

Re: [JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread hterrolle
I need to debug the JEditorPAne from java classes. There isa bug when painting the GIF file. I got an idea and i want to try. My application is finish and i got is little problem. -Message d'origine-De : Florin Herinean <[EMAIL PROTECTED]>À : [EMAIL PROTECTED] <[EMAIL PROTE

Re: [JAVA3D] AW: [JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread hterrolle
Hi,   Thanks for the information. I find out that i cannot extract rt from JRE and that the size of that file beetwen JDK and JRE is different. Si i ask if i can copy the JDK RT directory to JRE ?   thanks -Message d'origine-De : Florin Herinean <[EMAIL PROTECTED]>À : [EMAIL P

[JAVA3D] AW: [JAVA3D] [newbie] Best way to generate animation files from a java3d scenegraph

2003-04-03 Thread Florin Herinean
What you're looking for you're not finding (yet) in java3d. Maybe in the future. You should try any of the comercial available tools like 4Cinema, Maya, etc. Cheers, Florin -Ursprüngliche Nachricht- Von: Artur Matos [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 3. April 2003 10:50 An:

[JAVA3D] AW: [JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread Florin Herinean
Java has a strange policy of using the classes. When compiling, it uses rt.jar from the jdk, but when running with java, it uses rt.jar from the jre. So you need to change both of them.   Cheers,   Florin -Ursprüngliche Nachricht-Von: hterrolle [mailto:[EMAIL PROTECTED]Gesendet:

Re: [JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread hterrolle
Hi Florin,   It is nive to know that some people are here to help you. I do not do it yet i do not fell good enough.   So i replace the .JAVA in SRC directoriy and all the .CLASS in rt (in JDK 1.4 only) I thought about changing it in the JRE but i have not done it yet.   I try right now and

[JAVA3D] AW: [JAVA3D] Modifying java source

2003-04-03 Thread Florin Herinean
Are you using -Xbootclasspath/p: to set the classpath to your modified code, or have you replaced the class in rt.jar ? If you replaced it, then I hope that you have done it in both rt.jar files, in the sdk and in jre.   Cheers,   Florin   P.S. Why do you need to change a class from the jdk

[JAVA3D] Modifying java source

2003-04-03 Thread hterrolle
Hi, I got one question. I tryt to modified some java source from the JDK 1.4 i could modified the code recompile but when i debug the change are not taken into account but i can see that the code is still changed.   thanks

[JAVA3D] [newbie] Best way to generate animation files from a java3d scenegraph

2003-04-03 Thread Artur Matos
Hi to all, Sorry if this is a newbie question. I would like to ask the experts on this list on the best way for generating animation files (like MPG or AVI) from Java3D. I am aware of the NCSA java3D package that allows to save image frames, but I would like to find a solution that would allow me