Re: [JAVA3D] Always visible???

2002-10-03 Thread Dirk L. van Krimpen
Hi Gael, I always had the same problem. This till I used the approach Daniel Selman is describing (incl full code) in "Building the Java 3D Swing application" in his book Java 3D Programming. In his code he makes use of JPanel to place the Canvas. Works excellent. This book, if you don't have it,

[JAVA3D] How to Record a Java3D Animation?

2002-10-03 Thread A. Murat Tanyer
Hi all,   I am preparing an animation in Java3D. My plan is first making all the objects transparent and then making them opaque gradually.   Is there a way to record this animation as a file (e.g. *.avi file) while it is running? Some people advised me capturing snapshots of the screen as

[JAVA3D] Bug in OrientedShape3D.ROTATE_ABOUT_POINT ?

2002-10-03 Thread Elisabeth Thorsen
I am trying to label each side of the corners of a cube by using Text3D and OrientedShape3D. I would like the text to always face me although the cube itself seem to rotate.(The viewplatform is rotated around the cube using OrbitBehavior.) This is the code I use for the labels: Font3D f3d = new

[JAVA3D] Collision Detection Problem

2002-10-03 Thread Alex
Hi All, I am facing a problem with collision in Java3D. I have a model which runs on this terrain and I would want it to stop moving once it bump into walls rather than running through it. I manage to detect the collision between objects using the PickBounds method. My model navigate around using

Re: [JAVA3D] Texture loading

2002-10-03 Thread Rob Nugent
Out of curiosity, have you tried loading the images using the Java 1.4 ImageIO APIs? I'm not claiming that it'll be better, but I observe that TextureLoader only appears to use either Toolkit.getDefaultToolkit() or JAI if it available. (Presumably because it can't assume the availability of Jav

Re: [JAVA3D] ? VRML Editors and VRML Reduction ?

2002-10-03 Thread Nikolai V. Chr.
ZACZEK, MARIUSZ P. (JSC-DM) (NASA) wrote: > Hi, > Does anyone know of FREE/INEXPENSIVE VRML Editors...where you can > modify VRML objects. I know some/most CAD programs > can export into VRML but how about once you have a VRML and you'd > like to edit it. > There is something called Zawelsk

Re: [JAVA3D] ? VRML Editors and VRML Reduction ?

2002-10-03 Thread Nikolai V. Chr.
ZACZEK, MARIUSZ P. (JSC-DM) (NASA) wrote: > Hi, > Does anyone know of FREE/INEXPENSIVE VRML Editors... VIZup" Optimizer is free. Regards Nikolai === To unsubscribe, send email to [EMAIL

[JAVA3D] usinge ".max" files in Java3D

2002-10-03 Thread Lévan Sardjevéladzé
I want to load ".max" files (from 3DS) and to use them in a Java3D program. Does anyone know if some code has been written on the topic, or if it's possible to get the specifications somewhere ? === To unsubscribe, send emai

Re: [JAVA3D] NVIDIA cards

2002-10-03 Thread Gregory Gimler
Hello all, I'm getting some strange results and I was wondering if anyone else has encountered anything similar or knows what the best solution might be. I'm running some java 3d displays in real-time via multicast. There are a few machines running the same displays, the one I am runnin

Re: [JAVA3D] usinge ".max" files in Java3D

2002-10-03 Thread Jonathan Leong
Lévan Sardjevéladzé, Check out Starfire's 3DS format loader, Inspector3DS. http://www.starfireresearch.com/services/java3d/java3d.html --- Jonathan Leong [EMAIL PROTECTED] ".hack//sign" I am nothing. - Original Message - From: "Lévan Sardjevéladzé" <[EMAIL PROTECTE

Re: [JAVA3D] ? VRML Editors and VRML Reduction ?

2002-10-03 Thread Kevin Kim
Oh, Yes X3D editor is my first suggestion. My thesis advisor made that editor and you definately want to try that. He is Don Brutzman at US Naval Postgraduate School and also a board member for W3C. Here is a web site you can download and install. http://www.web3d.org/fs_x3d.htm. When I tried

Re: [JAVA3D] NVIDIA cards

2002-10-03 Thread Jason Taylor
Don't really understand what you're doing but it's probably worth making sure they also install the latest NVidia driver for W2K as the default ones aren't very good. Jason. >>> [EMAIL PROTECTED] 03/10/2002 14:48:58 >>> Hello all, I'm getting some strange results and I was wondering if

[JAVA3D] LineArray geometry in Linux

2002-10-03 Thread Nitin.Jain
Hi, I'm having problems with the LineArray geometry on Linux. Our application is a molecular viewer, which has wiremesh as one of the display style. When the number of atoms are increased in the model, the view gets messed up. The lines are drawn between random points. The linux environment is:

Re: [JAVA3D] NVIDIA cards

2002-10-03 Thread Andy
Is the message something wrong? Anyone can see it? Java.exe ./device/hdr. Isn't Java.exe is windows native file format there /device/hdr is talking about U*ix/Linux filesystem? Andy - Original Message - From: "Gregory Gimler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thurs

Re: [JAVA3D] usinge ".max" files in Java3D

2002-10-03 Thread Joerg 'Herkules' Plewe
Yes, but a max loader is still missing. Is there a certain reason for that?? > Check out Starfire's 3DS format loader, Inspector3DS. > http://www.starfireresearch.com/services/java3d/java3d.html > === To unsubscribe, send e

Re: [JAVA3D] usinge ".max" files in Java3D

2002-10-03 Thread John Wright
Our loader does require you to export to 3DS format from Max. As far as I'm aware nobody has documentation for the MAX format, thus it's difficult to create a loader for the MAX file format (certainly not something I'm going to spend time on without some documentation). - John Wright Starfire Re

Re: [JAVA3D] usinge ".max" files in Java3D

2002-10-03 Thread Joerg 'Herkules' Plewe
Yes, this is a very good reason! > As far as > I'm aware nobody has documentation for the MAX format, thus it's > difficult to create a loader for the MAX file format (certainly not > something I'm going to spend time on without some documentation). > > Joerg 'Herkules' Plewe wrote: > > > > Yes,

Re: [JAVA3D] NVIDIA cards

2002-10-03 Thread Gregory Gimler
Sorry, I did not send the exact message, here is the exact message: Java.exe - No Disk There is no disk in the drive. Please insert a disk into drive \Device\Harddisk1\DR1 Also, the latest NVIDIA drivers were installed with the same results. At 11:27 AM 10/3/2002 -0400, Andy wrote: >Is the me

[JAVA3D] How to take the difference between two Transform3d's..

2002-10-03 Thread Noah J. Ternullo
Howdy! I have three Transform3ds (A,B,C). A = the previous position and orientation of an object B = the current position and orientation of an object C = the current positoin and orientation of the camera I want to take the difference between A and B (the change in orientation and position)

[JAVA3D] dublicateOnCloneTree

2002-10-03 Thread Andreas Jerke
Hello, if I set dublicateOnCloneTree=true for my Appearance object, do I have to set dublicateOnCloneTree=true for all sub NodeComponents (TransparencyAttributes, Material ...) of this appearance too ? === To unsubscribe, se

Re: [JAVA3D] How to take the difference between two Transform3d's..

2002-10-03 Thread Sean Sylvis
Are you storing position and orientation (such as three direction normals) of the object? How do you get B? Sean > -Original Message- > From: Noah J. Ternullo [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 03, 2002 11:10 AM > To: [EMAIL PROTECTED] > Subject: [JAVA3D] How to take

Re: [JAVA3D] How to take the difference between two Transform3d's..

2002-10-03 Thread Noah J. Ternullo
On Thu, 3 Oct 2002, Sean Sylvis wrote: > > Are you storing position and orientation (such as three direction normals) of the >object? How do you get B? > > Sean This is how A is determined inside the Vehcile Code: Transform3D A = new Transform3D(); Transform3D xRot= new Trans

[JAVA3D] Thankyou to all

2002-10-03 Thread Vijayaraghavan Rajagopal
Hi, I am writing this e-mail as I have now finished my 4th year engineering project on development of a software to analyze multiple sclerosis using Java. I thank all of you for keeping these interest groups and answering my questions no matter how stupid they might have been. Having no idea a

Re: [JAVA3D] How to take the difference between two Transform3d's..

2002-10-03 Thread Mark Hood
> Date: Thu, 3 Oct 2002 14:10:12 -0400 > From: "Noah J. Ternullo" <[EMAIL PROTECTED]> > > Howdy! >I have three Transform3ds (A,B,C). > > A = the previous position and orientation of an object > B = the current position and orientation of an object > C = the current positoin and orienta

[JAVA3D] Problem of visualisation when changing distance of a ViewPlatform

2002-10-03 Thread Stéphane Vanacker
Hello, I'm french, so sorry for bad english. I have problems when I view an object like a ColorCube and this problem appears when I change the distance of the viewingPlatform. This is very particular : With the next Code trans.setTranslation(new Vector3d(0, 0, 50)); I can see easily the color

Re: [JAVA3D] Problem of visualisation when changing distance of a ViewPlatform

2002-10-03 Thread ZACZEK, MARIUSZ P. (JSC-DM) (NASA)
I believe it might be that the default back clipping plane is too close...you may try setting the back-clip distance farther backusing: u.getViewer().getView().setBackClipDistance( 1000.0 ); Also, you may want to change the front-clipping plane as well if it's too far away...with: u.g

[JAVA3D] Particles desappear after insta

2002-10-03 Thread Fabricio Anastacio
Hello, everybody! I've had a problem with Selman's particles system code form j3d.org after installing j2sdk 1.4.1. This version asks for the Service Pack 3 for the W2K (I wonder why?!?) and after installing the SP3, the j2sdk1.4.1 and Java3D 1.3 (openGL) I cannot see the particles generated. The

[JAVA3D] Particles disappear after installing J2SDK1.4.1/W2K SP3

2002-10-03 Thread Fabricio Anastacio
Hello, everybody! I've had a problem with Daniel Selman's particles system code form j3d.org after installing j2sdk 1.4.1. This version asks for the Service Pack 3 for the W2K (I wonder why?!?) and after installing the SP3, the j2sdk1.4.1 and Java3D 1.3 (openGL) I cannot see the particles generat

[JAVA3D] WakeupOnAWT for mouse behavior

2002-10-03 Thread Raghavendra R
Hi, I have an application for selecting a set of entities using polygon pick by enclosing these entities in a polygon drawn on a Canvas3D. I have attached WakeupOnAWTEvent for getting Mouse behaviors like Mouse press / click / drag etc. Till now, i was using Java3D 1.1.3 and it was working well.