Re: [JAVA3D] problem with Interpolator!!

2000-09-06 Thread Joerg Baus
"Frank C.P. Hsu" wrote: > > Hi, > > I have use "RotPosPathInterpolator" to create an animation. > My problem is how to start or stop the animation by press a key? > "RotPosPathInterpolator" is a behavior, subclass it and just create the appropriate wakeup criterion, it should be something similar

Re: [JAVA3D] ----->What goes on the web

2000-09-06 Thread Joerg >Herkules< Plewe
This is a very common problem and the answer will not delight you. I\'m sure you know that you need the Java2 plugin instead of a common tag. Additionally, you need even more than a J3D.jar. There are also some dlls that need to be installed. There is no way to do that automatically. You will h

[JAVA3D] Memory Leak?

2000-09-06 Thread David
It looks like my shapes are not being released to garbage collection after a detach: TRACE 6671: javax.media.j3d.Shape3DRetained.setLive(Shape3DRetained.java:1102) javax.media.j3d.GroupRetained.doSetLive(GroupRetained.java:1475) javax.media.j3d.BranchGroupRetained.setLive(BranchGroupRetained.j

Re: [JAVA3D] Memory Leak? More Info

2000-09-06 Thread David
I am recursively setting the Appearance to new Apearance() now for all my shape nodes: /** * Sets the appearance of every shape to a new appearance so they * can release shared items and be garbage collected */ private void resetAppearance( Node node ) { if (node instan

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread J. Lee Dixon
I didn't really think this was a big deal. The bundled install does make you have 2 JRE's, but that's what you have the "Java Plug-in Control Panel" for. I've never had to "fix a mess". I install the JDK/JRE, then the J3D-SDK, then the J3D-RUNTIME. Walla. The ONLY thing I have to watch for is

Re: [JAVA3D] ----->What goes on the web

2000-09-06 Thread J. Lee Dixon
There is a way around having to download the Sun J3D installer. I followed some directions and was able to make a self-extracting zip file that would install the 6 required files (see J3D readme) into the correct default location "1.3". I've also changed the manifest in my applet's JAR file so t

[JAVA3D] ATI Rage 128 PRO on Win2000

2000-09-06 Thread J. Lee Dixon
Anybody have any experience/luck with this video chipset on Win2000? I have not seen it first-hand, but my customer is trying to run my java 3d applet and their mouse cursor flashes whenever it is placed within the 3D window. If you go to the ATI site, they force you to download a reference driv

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the following

2000-09-06 Thread John Wright
I think the problem stems from the fact that many Java developers don't realize that there are TWO environments in which a Java program might execute (JDK & JRE). (And it could be worse depending on how many IDE's you have and how they are configured). Why should we know this? Heck, why do we e

Re: [JAVA3D] Java 3D for simulation

2000-09-06 Thread Mark Beckman
John, That is an excellent idea. Thanks for the input. I will definitely take a look at the mixed immediate mode rendering. Maybe we can collaborate as this thing progresses. I appreciate your time and effort. -Mark --- John Oliver <[EMAIL PROTECTED]> wrote: > Just throwing in MHO... some o

Re: [JAVA3D] Memory Leak? More Info

2000-09-06 Thread Yazel, David J.
Could it be that the compiling a BranchGroup creates a copy of the Shaped3d (retained) and its appearance? Should I re-compile the shape after setting its appearance to new Appearance() then drop the reference? Ack > -- > From: David[SMTP:[EMAIL PROTECTED]] > Reply To: Discu

[JAVA3D] non congruent transform above viewPlatform

2000-09-06 Thread Ben Arbel
hi all   im getting a strange exception (non congruent transform above viewPlatform)   when setting a transform3d to a transformGroup did any one encounter it before ? i will be happy to supply extra explanations for what im doing before that exeption or send an exmple code if you think it ca

[JAVA3D] custom object rotation in scene

2000-09-06 Thread Ben Arbel
hi all,   i am trying to write a class that will rotate a selected object in my scene, much like the PickRotateBehavior. does any one have some sample code for a rotation class ? i want to limit the object rotation to the yAxis so i wont be able to see the top or bottom of it .   any suggest

Re: [JAVA3D] Memory Leak?

2000-09-06 Thread J Myron Smith
Uhuh, automatic memory management and recovery, long espoused as one great feature of Java, is in practical application, proving to be the bain of us Java programmers. What good is automatic garbage collection if you can't depend on the garbage collector to see your garbage and pick it up in a

[JAVA3D] Java3D and eyetracking

2000-09-06 Thread Alejandro Terrazas
I am writing a Java3D virtual environment for use in brain recordings. A really critical aspect of this experiment is eye tracking. In that past, we have used a dos based system with a data acquisition card. I want to replace it with something that is integrated into my Java3D task. The brain

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the following

2000-09-06 Thread J Myron Smith
What's the purpose of having two JRE enviroments on your dev machine? Do you think this will allow you to test like an end user??? Dev machines never suit this purpose. If you uninstall the bundled JRE install by using the add/remove control panel app and reinstall it manually (using the JRE only

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread J Myron Smith
So I guess you like having redundant directory structures for other applications and tools on your computer as well. I prefer a single directory heiarchy, I guess good housekeeping is just in my nature. Myron -Original Message- From: Discussion list for Java 3D API [mailto:[EMAIL PROTEC

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread J. Lee Dixon
Nope, I just like testing in my end-user's environment, since that is where the rubber meets the road. It's not good housekeeping, it's thorough testing. -Lee -Original Message- From: J Myron Smith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 06, 2000 9:57 AM To: [EMAIL PROTECT

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread J Myron Smith
(list followers please accept my apologies for carrying on this silly thread, I promise, no further replies from me on this topic) but I have to say this... I think the idea that a developer can do thorough testing on the machine he developed the code/scripts etcetera, on as a contradiction in it

Re: [JAVA3D] Cave and Java3D, continued

2000-09-06 Thread Alejandro Terrazas
A week ago, I posted a message about a Cave I am developing for Java3D. Kelvin Chung and Paul Byrne send an example and some documentation that were helpful. I still have a bit of work to do on this but I can see this actually working sometime soon. Here is where I am so far. I am using Windows

Re: [JAVA3D] Java 3D for simulation

2000-09-06 Thread Fred Klingener
From: "John Oliver" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 05, 2000 11:02 PM > Just throwing in MHO... some opinions about making simulations that I didn't > find, and since learned, after I started Java3D not too long ago. > > I'm pretty much a novice with Java3D b

[JAVA3D] Urgent!! Please, I need help!

2000-09-06 Thread Pedro García Patrón
Hi everybody!   I've got a problem and I don't know how can I solve it. I have an applet zipped in a jar file. I can't run this applet in a browser or in the appletviewer because an error like this one appears:        java.lang.NoClassDefFoundError: javax/media/j3d/Group   I use the Java Plug-in

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the following

2000-09-06 Thread Vladimir Olenin
Hey, guys, what all this about? To resolve all problems, basically all u have to do is to tamper with Windows registry (i run Java and used to run J3D under Windows systems only. Don't know where installation information is written under Unix systems). Find all keys containing Java or JRE, see if

[JAVA3D] AW: [JAVA3D] Your Java3D Applications

2000-09-06 Thread Volopich Heinz
hi everybody,   Java3D brought together two of my hobbies - computer graphics and astronomy. I implemented a solar system simulation based on Java3D and lots of realistic texture maps. The various objects like the sun, planets, moons, and the International Space Station (VRML-Model) are tru

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread J. Lee Dixon
Whew, this thread is getting way too long. Do we really want to tell new developers that they have to go muck with the registry? If you want to test with different JRE versions, just use the "Java Plug-in control panel". Does anybody else use this thing? I vote for an updated FAQ entry talking

Re: [JAVA3D] Urgent!! Please, I need help!

2000-09-06 Thread J. Lee Dixon
-- =_NextPart_001_01C01822.42A8537A Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Pedro, The problem of running J3D in a browser is addressed in the FAQ, = located at www.j3d.org.=A0 Look under "Web Browsers". =A0 -Lee -Original Messag

Re: [JAVA3D] Urgent!! Please, I need help!

2000-09-06 Thread James Robertson
Try setting PATH environment variable to include C:\jdk1.2.2\jre\bin;C:\jdk1.2.2\bin or whatever is appropriate to your environment. And set CLASSPATH to include     C:\jdk1.2.2\jre\lib\ext\j3dcore.jar;     C:\jdk1.2.2\jre\lib\ext\j3dutils.jar;     C:\jdk1.2.2\jre\lib\ext\vecmath.jar

Re: [JAVA3D] ATI Rage 128 PRO on Win2000

2000-09-06 Thread Philip Taylor
iif this is the DX version of J3D, its possible this artifact in a window is caused by the J3D runtime not using a clipper... -Original Message- From: J. Lee Dixon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 06, 2000 5:25 AM To: [EMAIL PROTECTED] Subject: [JAVA3D] ATI Rage 128 P

Re: [JAVA3D] Cave and Java3D, continued

2000-09-06 Thread Justin Couch
> That said. I was able to make a scene with 3 view platforms and 3 views. I > then rotate the left and right views to correspond with the field of view. > This works but I have a feeling it is not the optimal way. > > But, my read of the Java3D specification would suggest that there is a way >

Re: [JAVA3D] non congruent transform above viewPlatform

2000-09-06 Thread Carl Smotricz
Hi Ben, At 16:58 06.09.00 , you wrote: >im getting a strange exception (non congruent transform above >viewPlatform) when setting a transform3d to a transformGroup did any one >encounter it before ? i will be happy to supply extra explanations for >what im doing before that exeption or send an

Re: [JAVA3D] non congruent transform above viewPlatform

2000-09-06 Thread Matti Hietajarvi
On Wed, 6 Sep 2000, Ben Arbel wrote: >hi all > >im getting a strange exception (non congruent transform above viewPlatform) >when setting a transform3d to a transformGroup did any one encounter it >before ? i will be happy to supply extra explanations for what im doing >before that exeption or se

Re: [JAVA3D] Urgent!! Please, I need help!

2000-09-06 Thread J. Lee Dixon
-- =_NextPart_001_01C0182B.1650F0BC Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable To run in a browser, you do not have to play with PATH or CLASSPATH to run in a browser.=A0 You DO have to run the HTML file through the = plugin converter. =

[JAVA3D] Odd picking problem

2000-09-06 Thread Glenn Rowe
I've been experimenting with picking and have come across some odd behaviour - just wondering if anyone else has found something similar. Basically, I've defined a picking behaviour class that selects a list of all objects along a ray from the mouse position, and changes the diffuse colour of all

Re: [JAVA3D] Making background Transparent

2000-09-06 Thread Tater Read
I thought about this, however if any part of the model happens to be the same color as the background, those areas will be make transparent too. Is there no way to set the background to be transparent? Cheers, Tater Anti-Aliasing aside, you could take the image inside Java and process it. Es

Re: [JAVA3D] non congruent transform above viewPlatform

2000-09-06 Thread Michael Shantz
Here is one way to overkill the problem using Vector3d's, Matrix3d mat, Transform3D trans, and viewTrans = universe.getViewingPlatform().getViewPlatformTransform(); locVw.set( -0.6, -3.5, -0.1); // View location in WC yVw.set( 0.0, 1.0, 0.0);// View up d

Re: [JAVA3D] ATI Rage 128 PRO on Win2000

2000-09-06 Thread Kelvin Chung
Hi, I think it is some other problems. DX version of J3D did set the clipper using the following code: LPDIRECTDRAWCLIPPER pcClipper; hr = pDDraw->CreateClipper(0, &pcClipper, NULL); if (FAILED(hr)) { error(CLIPPERFAIL, hr); return false; } pcClipper->SetHW

Re: [JAVA3D] ATI Rage 128 PRO on Win2000

2000-09-06 Thread Jim Schatzman
I don't think this is a Win2K problem per se. I have had very poor success with any of the ATI Rage series on both WinNT and Win 2K. The Rage Pro chipset appears to work o.k. but without hardware acceleration for OpenGL (VERY SLOW). In my experience an ATI Rage 128 Pro on a WinNT performed not jus

[JAVA3D] mailing list

2000-09-06 Thread Ben Arbel
hey all   i sent an email last week to the intrest group telling it i want to get a digest every day instead of separate emails, now i want to reverse that. does anyone know what i should write to reverse that ? (i.e getting those emails regularly)   thanks,   Ben ArbelComsoft Technologies,

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread Yazel, David J.
If I could get this kind of response rate for all my many unanswered postings I would be ecstatic! > -- > From: J. Lee Dixon[SMTP:[EMAIL PROTECTED]] > Reply To: Discussion list for Java 3D API > Sent: Wednesday, September 06, 2000 12:55 PM > To: [EMAIL PROTECTED] > S

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the foll owing

2000-09-06 Thread John A. Tenney
I agree that two directory structures is crazy. It turns out that you need to install all your extension jars into the "program files\javasoft\jre\1.3\lib\ext" directory to do "standard" runs and compiles (say, using the Java plug-in and javac), but if you want to use Forte, you have to put the SA

[JAVA3D] problem with Interpolator!!

2000-09-06 Thread Frank C.P. Hsu
Hi, I have use "RotPosPathInterpolator" to create an animation. My problem is how to start or stop the animation by press a key? Thanks in advanve === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body

Re: [JAVA3D] ATI Rage 128 PRO on Win2000

2000-09-06 Thread Bobby Martin
I've worked on Win98 and Win95, and my experiences with ATI have been different. For the ATI Rage Pro, like you, I had no hardware acceleration (as you said _very_ slow). However, with the Rage 128, I've had excellent hardware acceleration on windowed OpenGL, and certainly no errors in rendering

Re: [JAVA3D] Lets get that JDK install fixed Please...Do the following

2000-09-06 Thread Justin Couch
"J. Lee Dixon" wrote: > I vote for an updated FAQ entry talking about (easy) installation > procedures... provide a step-by-step. Funny thing is, there is such a beast. Unfortunately, nobody seems to read it, or it gets comments that it is not simple enough. If you can come up with better wordin

[JAVA3D] simple question?

2000-09-06 Thread Thijs Maenhout
I think this is a simple question but I can't get out of it (I'm a newbie to Java3D) I wan't to change the appereance of a Shape3D at Runtime (wireframe -> Solid; Solid -> wireframe) The code to do this works fine but when I wan't to switch between Wireframe and Solid at Runtime I get the excepti