[JAVA3D] Fw: [JAVA3D] BoundingBox...Box! a great problem!

2003-09-22 Thread Dirk L. van Krimpen
  - Original Message - From: Dirk L. van Krimpen To: Andrea Todeschini Sent: Sunday, September 21, 2003 11:26 AM Subject: Re: [JAVA3D] BoundingBox...Box! a great problem!   Andrea,   Would itn't be possible to do the following?   BoundingBox box=new (BoundingBox)yourObject.getBounds()

[JAVA3D] I want you!

2003-09-22 Thread Silvère Martin-Michiellot
Just trying to contact Alessandro Borges. If you have his email, please send it to me. Thanks. __ Silvere Martin-Michiellot builds the Internet future on www.digitalbiosphere.com ___

[JAVA3D] creating shapes from GeometryArray

2003-09-22 Thread Robert Gomez-Reino
Hi all, I am creating shapes3D using the class GeometryArray and the method addGeometry() de Shape3D. The thing is that I though that I was going to be able to use the method setAppearance() to set the appearance of this shapes3D. If I do it the shapes remain in white color. Can anybody

Re: [JAVA3D] creating shapes from GeometryArray

2003-09-22 Thread Robert Gomez-Reino
An extension of my question.. Is the only way to solve this to use the methods of GeometryArray (setColors(), setTextures().) ? Boby - Original Message - From: Robert Gomez-Reino To: [EMAIL PROTECTED] Sent: Monday, September 22, 2003 5:49 PM Subject: [JAVA

[JAVA3D] AW: [JAVA3D] creating shapes from GeometryArray

2003-09-22 Thread Dietrich, Harald
Obviously something is wrong with your Shape3D appearance. White is the default setting for the appearance of an scene graph object. So it looks like you do not set a proper appearance. Setting the appearance for the Shape3D is enough. You do not have to set color or texture explicitly for your geo

Re: [JAVA3D] AW: [JAVA3D] creating shapes from GeometryArray

2003-09-22 Thread Robert Gomez-Reino
Yes, I have an ambient light and two directional lights, but I can't set the Appearance of my shapes, they are all white(the default white). Boby - Original Message - From: "Dietrich, Harald" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 22, 2003 6:00 PM Subject: [JAV

[JAVA3D] AW: [JAVA3D] AW: [JAVA3D] creating shapes from GeometryArray

2003-09-22 Thread Dietrich, Harald
Here is some sample code for setting the appearance for a Shape3D object (a red colored XY-Plane): Shape3D shape = new Shape3D(); TriangleStripArray geometry = new TriangleStripArray(4, TriangleStripArray.COORDINATES, new int[] {4}); Point3d[] points = new Point3d[] { new Point3d(1e6, 1e6

Re: [JAVA3D] Java3D in CAVE

2003-09-22 Thread Silvère Martin-Michiellot
At 13:46 19/11/2002 -0500, you wrote: Hello, We recently got our Java3D applications to work on SGI InfiniteReality3 system and I just thought it may be useful for others to know some of the things we had to do. 1-Attach head view in Java3D to tracker position in CAVE: this involves writing the J

[JAVA3D] SV: [JAVA3D] AW: [JAVA3D] AW: [JAVA3D] creating shapes from GeometryArray

2003-09-22 Thread Robert Gomez-Reino Garrido
Aha, the Appearance that I am triyin to set I get it from a 3DS model loaded in the application. What I do is: I load a 3DS object with a metal appearance, I get the Appearance of this object with getAppearance() and I set this Appearance to the shapes created with the GeomtryArrays, it doesn´

[JAVA3D] PathInterpolator and alpha object

2003-09-22 Thread Serge Bernier
Hi all, Im currently trying to modify at runtime the alpha.setIncreasingAlphaDuration () of a alpha object. The visual result is to modify the speed of the object under a pathInterpolator. I want to modify the speed of the object as a function of the angular deviation of the mouse. The user is tr

Re: [JAVA3D] Java3D in CAVE

2003-09-22 Thread Mojtaba
Hello, TrackD is a software package that is used to gather information from various tracking devices and lets applications access that data. See: http://www.vrco.com/products/trackd/trackd.html I will send the source code to your email only (not the lists).

[JAVA3D] Java 3D FAQ Weekly Posting (22 Sep 2003)

2003-09-22 Thread The Java 3D FAQ
The Java 3D Frequently Asked Questions list for Monday September 22 2003 This is a posting of topics covered in the Java 3D FAQ. The answers to these questions are kept at: http://www.j3d.org/faq Please consult this list and the web site before asking questions on the mailing list. If

Re: [JAVA3D] Java3D in CAVE

2003-09-22 Thread Paul Gordon
If you want more details on how Java3D deals with multiple screens, head tracking, etc, you may also find it useful to check out the white paper on our Java3D CAVE: http://java.sun.com/products/java-media/3D/calgary.whitepaper.pdf Regards, Paul Mojtaba wrote: Hello, TrackD is a software package

[JAVA3D] Test Case for Bug 4751162

2003-09-22 Thread Mike Pilone
Hello, Attached is a test case for Bug ID: 4751162 View TRANSPARENCY_SORT_GEOMETRY throws NullPointerException when viewpoint move This bug has been around since Sept 2002 and is still in the final release of 1.3.1 (and the beta release for Linux). The test case recreates the bug. Directions for

[JAVA3D] 1.3.1 Final For Linux?

2003-09-22 Thread Mike Pilone
Hello, Is there going to be a 1.3.1 final for Linux? I am waiting for bug 4846822 NullPointerException in MasterControl addFreeImageUpdateInfo to be fixed, which it should be done in 1.3.1 final. Unfortunately there is no release for Linux yet! Thanks, -mike BTW, another plug for Java3D on OS-X.

[JAVA3D] Xj3D gets faster parsing

2003-09-22 Thread Justin Couch
While at a client's site last week I found a significant bottleneck in the file parsing code of Xj3D. This effected files that were running heavy coordinate-based data. After fixing the issue, I'm happy to report that Xj3D is now, at a minimum, loading files in 2/3rds of the time previously, and up

Re: [JAVA3D] Test Case for Bug 4751162

2003-09-22 Thread Chien Yang
Mike, Thanks for your test program. I've updated the bug report to P3, and it will be reviewed for fix in the next release if we have to. I hope to get back to you with a decent workaround ASAP. thanks, - Chien Yang Java 3D, Sun Microsystems Inc. Mike Pilone wrote: Hello, Attached is a

[JAVA3D] PathInterpolator and alpha object

2003-09-22 Thread Serge Bernier
Hi all, sorry to be persistent, but I really need some help with the alpha value problem describe in the earlier message. I dident receive any feed back so I hope I was clear in my question. If someone feel strong on the Interpolator and alpha subject I really need some tips fast. thank for your