[JAVA3D] Panorama and view transition using Java3D available!

2003-01-22 Thread Greg Huang
Hi forum:   The following site is to display a panorama and view transition using Java3D. http://smart.iis.sinica.edu.tw/projects/AugPano/Matisse/index.html There is something problem when it runs in JRE1.3.1 and Java 3D 1.3, and I attacted the exceptions below. Can you browse the site and r

[JAVA3D] Changing a by-ref coordinate array

2003-01-22 Thread Brad Christiansen
Hi, I am creating a line using a LineStripArray in by-ref mode. If the number of points(*3) in the line exceed the size of my coordinate array then i need to set a new coordinate array with a new (larger) size. When I am doing this the vertex count is not increasing. Basicaly the problem I am h

Re: [JAVA3D] Automatically activate a JWindow

2003-01-22 Thread GB Liu
Title: Network Blitz Daniel:   Thank you for your information.  Before I sent this question, I actually checked the Java3D Archives.  I did not get anything useful.  With your suggestion I checked the archives again, but still got nothing.  Can you give me some brief suggestion?    Thank yo

Re: [JAVA3D] Automatically activate a JWindow

2003-01-22 Thread Daniel C
Title: Network Blitz This question has been asked before.  You can try searching the archives.  Try: canvas3D.requestFocusInWindow();   Daniel Cardenas   -Original Message- From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]] On Behalf Of GB Liu Sent: Wednesday, Jan

[JAVA3D] Automatically activate a JWindow

2003-01-22 Thread GB Liu
Title: Network Blitz Hi Friends:   I have a program displaying J3D images in JWindow.  This program uses a Behavior to read the keyChar entered.  Every time when the JWindow is on, the program can not read any keyChar unless I click once on the screen to activate the JWindow.  Is there anywa

[JAVA3D] Matrix and Quaternion FAQ moved to j3d.org

2003-01-22 Thread Justin Couch
Just to let everyone know that the Matrix and Quaternion FAQ has now moved to j3d.org. Andreas, the maintainer, has moved back to Germany and the U-Alberta account is going to disappear, so he wanted a more permanent location (He is still doing the maintenance, not us at j3d.org). You can find the

Re: [JAVA3D] Performance for Pure Immediate Mode applications

2003-01-22 Thread Kelvin Chung
Xuedong Din (IT) wrote: Hi, can someone who knows J3D inside shed some light on my questions? Thanks in advance. I'm developing a 3D dynamic application based on Pure Immediate Mode. I first draw about 5000 triangles on GraphicsContext3D and then swap the corresponding Canvas3D. The "draw" acti

Re: [JAVA3D] System.exit(0)

2003-01-22 Thread Peter Strachan
Isaac I have found the same. I assume it is a security safeguard. It is possible to use exit(0) in an application, but not in an applet. If allowed in an applet then this would be the same as contolling the local machine via the browser. Don't know the solution to your problem. Peter S. - Orig

[JAVA3D] Performance for Pure Immediate Mode applications

2003-01-22 Thread Xuedong Din (IT)
Title: Performance for Pure Immediate Mode applications Hi, can someone who knows J3D inside shed some light on my questions? Thanks in advance. I'm developing a 3D dynamic application based on Pure Immediate Mode. I first draw about 5000 triangles on GraphicsContext3D and then swap the co

[JAVA3D] Cloning Index in Branch Group

2003-01-22 Thread Brobbey,Isaac (neuron)
Dear all: i have a branch group with six children which are all branch groups. how can I clone the branch group at Index zero ? Is it possible to detach a child from an ordered group ? thanks, Isaac === To unsubscribe, se

Re: [JAVA3D] AW: [JAVA3D] Where to change the View of a Canvas3D? - Thread is sue

2003-01-22 Thread Michael Nischt
hi Florin, thanks for reply. I have several View objects in my scenegraph and I'd like to switch them to rendering on my Canvas3D. [pseudo-code] canvas3D.getView().removeCanvas3D(canvas3D); newView.addCanvas3D(canvas3D); [/pseudo-code] but is this valid through AWT-Event-Thread ? is there any

Re: [JAVA3D] X3D M6 Performance problems SOLVED!

2003-01-22 Thread Joachim Bratteli
Tuesday, January 21, 2003, 4:51:43 PM, Michael P. McCutcheon wrote: > Hmmm...interesting. > What I'm hearing is that it would be really cool if the XJ3D package could be > configured to work just as a loader of models (with none of the > event/interactivity stuff). That way, I would think you coul

[JAVA3D] AW: [JAVA3D] Where to change the View of a Canvas3D? - Thread is sue

2003-01-22 Thread Florin Herinean
What do you mean by "changing the view" ? You want to change to a different view object or you want to change the transform bound to that view ? Florin -Ursprüngliche Nachricht- Von: Michael Nischt [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 22. Januar 2003 23:34 An: [EMAIL PROTECTED]

[JAVA3D] Where to change the View of a Canvas3D? - Thread issue

2003-01-22 Thread Michael Nischt
Hi all, can anybody tell me where to change the View of a Canvas3D through a keyboard input? It seems not to be allowed in a behavior's processStimulus method, there for I use a KeyEventListener. Is this valid ? I ask, because I assume the JavaEventLoop is another Thread and I wonder about whe

[JAVA3D] A little help with code - setCoordinates

2003-01-22 Thread Brad Christiansen
This Email may contain confidential and/or privileged information and is intended solely for the addressee(s) named. If you have received this information in error, or are advised that you have been posted this Email by

[JAVA3D] AW: [JAVA3D] A little help with code - setCoordinates

2003-01-22 Thread Florin Herinean
Why don't you make the original array big enough ? Florin -Ursprüngliche Nachricht- Von: greg baboolal [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 22. Januar 2003 09:59 An: [EMAIL PROTECTED] Betreff: Re: [JAVA3D] A little help with code - setCoordinates Hi Brad, I will look into it,

Re: [JAVA3D] A little help with code - setCoordinates

2003-01-22 Thread greg baboolal
Hi Brad, I will look into it, will this work even if the new array is not the same length (greater than) the original? Cheers, Greg. --- Brad Christiansen <[EMAIL PROTECTED]> wrote: > Hi, > > If you keep a referance to your original coord array > then you can simply change the values in that arr