[JAVA3D] blackdown jdk and java3d installation?

1999-12-07 Thread Tammo Freese
Hello, on my linux system I have installed the blackdown jdk 1.2 in /usr/jdk1.2 . I have an ELSA Erazor 3 video card and i am using the Mesa/GLX/Nvidia extension to get hardware acceleration for three-dimensional graphics (the whole installation worked fairly well with SuSe Linux 6.2 and the inst

[JAVA3D] experimenting with colors and lights

1999-12-07 Thread Hardy Henneberg
Hello, I need a simple application, that allows me to experiment with colors and lights, and to get the preferred values for using in my Java3d application. Can sombody recommend one? kind regards Hardy Henneberg === To unsu

[JAVA3D] vrml97.jar

1999-12-07 Thread Pine Peng
I downloaded the file "vrml97.jar" and installed it in c:\jdk1.2\bin, but how can I use it? _ Ê×¶¼ÔÚÏß--ÏȽøÖйúÈ˵ÄÍøÉϼÒÔ° http://www.263.net Ãâ·ÑÓÊÏä ÓʼþÔÓÖ¾ Ç©ÃûÓʼþ Óʼþ¼ÓÃÜ Óʼþ×·Éíºô ËÑË÷ÒýÇæ ¸öÈËÕ¾µã ÔÚÏßÓÎÏ· ÍøÉÏÁÄÌì ÍøÉϹҺнðÈÚÍõ¹ú ÔÚÏßɱ

Re: [JAVA3D] vrml97.jar

1999-12-07 Thread Stephan Haut
> I downloaded the file "vrml97.jar" and installed it in c:\jdk1.2\bin, but how can I use it? > Hi Pine Peng! Copy the vrml97.jar-File in the following directory: "c:\jdk1.2\jre\lib\ext\". I hope this helps! Greetings, Stephan Haut.

Re: [JAVA3D] experimenting with colors and lights

1999-12-07 Thread Daniel Selman
Hardy, I've attached my sample LightTest program. I posted it originally a couple of weeks ago along with instructions. Sincerely, Daniel Selman -Original Message- From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]]On Behalf Of Hardy Henneberg Sent: 07 December 1999 06:18

Re: [JAVA3D] Geometry prob

1999-12-07 Thread Guillermo E. Gutierrez
Hi Ajit, There are various reasons why your geometry might not be displayed. The most common problem seems to be placing your view frustum in front of your geometry so the objects are behind you (and hence "invisible"). There have been some posts on this, but try moving your ViewPlatform away fr

[JAVA3D] Canvas3D and JMenu (swing....)

1999-12-07 Thread David Hallé
Hi there, I've got a JFrame with a Canvas3D inside and a JMenuBar with JMenu. The menus are not visible at runtime. Is it a known bug classified in "JAVA3D and swing" David. __ Message envoye depuis iFrance >> htt

[JAVA3D] Unsatisfied Link Error...

1999-12-07 Thread Barry Walsh
Since installing j3d 1.2 Alpha1, I get this error: Exception in thread "main" java.lang.unsatisfiedLinkError: initializeJ3D at javax.media.j3d.MasterControl. at javax.media.j3d.VirtualUniverse$2.run What does it mean?? Cheers, B. =

[JAVA3D] Volume rendering downloads from J3D.ORG

1999-12-07 Thread Steve Pietrowicz
If you've recently experienced problems downloading the volume rendering examples (http://www.j3d.org/utilities/volume.html) from j3d.org, you should be able to get them now. The site hosting those files is being transitioned to a new web hosting company, and the DNS numbers haven't updated throu

[JAVA3D] Possible bug

1999-12-07 Thread Gary L. Graf
Hi, I’m have a potential bug report when using the pickAny() method. When my scene is drawn, at one point I engage a Behavior that goes to an object within the scene and attempts to find out which other objects are in its “line of sight”. I do this by finding a point on the surface of the sha

Re: [JAVA3D] Unsatisfied Link Error...

1999-12-07 Thread Ming Zhang
This means that compiler or VM cannot pick up your Java 3D classes. So move the java 3D jar files up one level to jre/lib. Just to make sure, move your Java 3D jar files to jre/lib/ext as well. -Original Message- From: Barry Walsh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 07, 199

Re: [JAVA3D] Unsatisfied Link Error...

1999-12-07 Thread Barry Walsh
I found that installing the new version installed the J3D dll files to JDK1.2/jre/bin. They also need to be copied into JDK1.2/bin Cheers, B. -Original Message- From: Barry Walsh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 07, 1999 2:17 PM To: [EMAIL PROTECTED] Subject: [JAVA

Re: [JAVA3D] Possible bug

1999-12-07 Thread Doug Gehringer
> From: "Gary L. Graf" <[EMAIL PROTECTED]> > > SceneGraphPath pickPath = new SceneGraphPath(); > sceneObjectsBranchRoot.pickAny(nextPick); > pickedObject = pickPath.getObject(); > > The program compiled successfully and ran, but never found any > intercepted objects. However, when the

[JAVA3D] Can Java3D be implemented on a JPanel?

1999-12-07 Thread Steve Sampson
Hello, Attached is a short program that should (as far as I know) implement a java3d window as a JPanel. However, it does not. Any suggestions. Steve // // import java.awt.*

Re: [JAVA3D] Can Java3D be implemented on a JPanel?

1999-12-07 Thread Dan Todor
I don't subscribe 100% at this Take a look at the two files attached, this is a portion of an application I wrote that really works. Vladimir Olenin wrote: > I guess u ran across the same notorious issue: heavyweight components > vs. lightweight ones. The latter are always overlapped by the

Re: [JAVA3D] Canvas3D and JMenu (swing....)

1999-12-07 Thread Vladimir Olenin
It's a known issue about lightweight and heavyweight components. Browse Sun's tutorials or this list archive for more information. vladimir -=V=- >---<=>---< Join in Java community now! http://JavaCafe.VirtualAve.net/ >---<=>---< In your previ

Re: [JAVA3D] Can Java3D be implemented on a JPanel?

1999-12-07 Thread Vladimir Olenin
I guess u ran across the same notorious issue: heavyweight components vs. lightweight ones. The latter are always overlapped by the former, no matter what the Z order is. Canvas3D is a heavyweight comp, while all Swing components are the light ones. I guess that's where your problem is. vladimir