[JAVA3D] examples

1999-12-10 Thread Canoe
Title: RE: [JAVA3D] java3d-Books Hi,   I am a beginner for J3D and I need some examples about visual objects motion ( more than one object moving in a scene ) .   anybody can help me ?   thanks.   Jiang

[JAVA3D] offscreen rendering

1999-12-10 Thread Talal Shihabi
Hi, I am trying to do offscreen rendering in Java3d 1.2 alpha. The following exception is thrown when I set the offscreen flag to true in the Canvas3D constructor: java.lang.NullPointerException: at javax.media.j3d.VirtualUniverse.enableKeyEvents(VirtualUniverse.java: 432) at

Re: [JAVA3D] A good example of dynamic scene changes

1999-12-10 Thread Steve Sampson
Andy, I guess I want to change the scene on the fly. I have included a quick demo of what I am trying to do. It is a demo that displays three strings of text. The user can change and update the text by clicking a button. thanks again for any help or suggestions. Steve At 11:44 AM 12/10/99 -

[JAVA3D] ANNOUNCE: J3dTree update

1999-12-10 Thread Daniel Selman
All, I've posted a minor update to J3dTree. I've added detailed reporting for all the Appearance NodeComponents: http://www.tornadolabs.com/News/J3dTree_Home/j3dtree_home.html - Added detailed reporting for ColoringAttributes - Added detailed reporting for LineAttributes - Added detailed report

Re: [JAVA3D] help setting direction

1999-12-10 Thread G . Veith
Hi Wayne, this sounds like you're doing your transformations in the local coordinate system of the object. If you want to let move things in another coordinate system, you first have to perform a coord. transformation. for example tranform your object into the CS of your viewpoint, apply navigati

Re: [JAVA3D] A good example of dynamic scene changes

1999-12-10 Thread Daniel Selman
Dan/Steve, As far as I know there is no way of changing the geometry within a Text3D after it has been created. The setString method will merely *append* geometry to the internal GeometryArray, regardless of what is passed in. SUN were supposed to revise some of the Text3D methods for 1.2 howeve

Re: [JAVA3D] java3d-Books

1999-12-10 Thread Eric Reiss
I beg to differ about this book. I think it is pretty bad. They seemed to have been in a big rush to get it to press. There are numerous mistakes an I stopped reading it after a few chapters. I was especially disappointed by the mistake for the rotation matrices in Chapter 2. All three of the

Re: [JAVA3D] A good example of dynamic scene changes

1999-12-10 Thread Andrew Phelps
Steve, Can you be more specific with the problem? Is it that you do not know how to physically change shapes on the scene graph, or are you having problems changing the scene on the fly (as a function of time)? Andy -Original Message- From: Steve Sampson <[EMAIL PROTECTED]> To: [EMAIL

Re: [JAVA3D] java3d-Books

1999-12-10 Thread Bob Gray
Title: RE: [JAVA3D] java3d-Books I found this book to be almost worthless.  *Far* too much code.  Far too little "simple" code segments explaining of to use Java 3D classes. To learn anything, the authors expect you to review *many* pages of code. I found the tutorial much better to lea

Re: [JAVA3D] java3d-Books

1999-12-10 Thread Steve Pietrowicz
A current list of Java 3D books is listed at: http://www.j3d.org/books/ Mohammed Akacem wrote: > Hi, > could someone of you tell of a good java3d book? > > thanks > Mohammed > > === > To unsubscribe, send email to [EMAIL PR

Re: [JAVA3D] java3d-Books

1999-12-10 Thread Gary L. Graf
Hi, Other than the API reference by Sun (published by Addison Wesley), the only other book I know of on the subject is "Ready-to-Run Java 3D" by Kirk Brown and Daniel Peterson (Wiley Computer Publishing, New York, 1999, ISBN 0-471-31702-0). Online, look at the Sun site and several others that

Re: [JAVA3D] help setting direction

1999-12-10 Thread wayne c deprince jr.
gracia marco, ill try this but isnt this for setting a view transform only? i think i need a transformation/model transform.. maybe they are the same? im not sure obviously... but ill give it a try... ciao, wayne Marco Lohse wrote: > > hello Wayne, > I have not checked out your code yet, but

Re: [JAVA3D] java3d-Books

1999-12-10 Thread Fiona Hunter
Hello If you want a book to teach you Java3D, I used: "Ready-to-Run Java 3D With Plug-and-Play Code", by Kirk Brown and Daniel Peterson ISBN 0-471-31702-0 It comes with a CDROM and isn't too bad:) Fiona *it is my madness that keeps me sane* - Original Message - From: Mohammed Akace

[JAVA3D] java3d-Books

1999-12-10 Thread Mohammed Akacem
Hi, could someone of you tell of a good java3d book? thanks Mohammed === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMA

Re: [JAVA3D] help setting direction

1999-12-10 Thread Marco Lohse
hello Wayne, I have not checked out your code yet, but maybe you should take a look at Transform3D.lookAt(..). Marco. "wayne c deprince jr." wrote: > > ciao all, > just need some help with a simple problem.. i want to set the > direction (or orientation i guess) of an object (box, camera, wha

Re: [JAVA3D] [Java3D]gc

1999-12-10 Thread G . Veith
Hi, that's what I found out too :( IMHO one cannot force gc to run at a predefined time. system.gc() is only a suggestion as you said. If you are using hotspot, try running it in "classic" mode. this will work more smooth. Gernot [EMAIL PROTECTED] mark rudolph

Re: [JAVA3D] A good example of dynamic scene changes

1999-12-10 Thread Dan Todor
>From what I have tried, you can put any text, then change it in a behavior, but only the EXACT number of characters that you send for the first time to the Text3D object. If you send one character in plus or minus, everything becomes a mess. Haven't yet tried out padding with spaces... Anybody ha

Re: [JAVA3D] color

1999-12-10 Thread Olivier fillon
May sounds stupid but why would you want to have a transparent background I suppose we are talking about the virtual world background? >Does anyone know how to create a transparent background >using ..setBackground(new Color(?,?,?,?); > Regards/amicalement Olivier-- Olivier FillonMinesta

[JAVA3D] [Java3D]gc

1999-12-10 Thread mark rudolph
Even very simple animations look jittery to me. Perhaps this is the result of garbage collection during frame rendering, or in too big time segments no matter where they occur. Is it possible to force gc to occur only during a limited period of the postswap? I don't think System.gc() actually runs