[JAVA3D] source of MouseRotate

1999-10-25 Thread Tria
Where can I find source for MouseRotate /MouseTranslate?? regards, Tria === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [

[JAVA3D] mouse behavior

1999-10-25 Thread Tria
Hi... I don't understand well about MouseBehavior. Can I get all the mouse events from that class? How to use it? I extend a class from MouseBehavior and make switch for each event in processMouseEvent method. In createSceneGraph() I make an object from this class and connect it to one Transform

[JAVA3D] Using tools with Jave3D

1999-10-25 Thread John D. Charbonneau
What is the simplest way to get a model with texture and animation into Jave3D in such a way that: 1 - The model and animation is built in some sort of tool - not by coding. 2 - I can identify the labled 'parts' of the model after they are part of the scene-graph(e.g. search for DEF names in a VR

Re: [JAVA3D] Textures with Alpha values / png-format workingwithJava?

1999-10-25 Thread Justin Couch
Holger Wagner wrote: > This might be slightly off-topic, but could you explain how you did > this? We'd very much like to be able to avoid GIF as well, and PNG > sounds like a good alternative... (I'm kind of surprised that java only > supports GIF and JPG in the standard JDK - even in 1.2) Side

[JAVA3D] Logical problem using Java3D for Making Rubik Cube

1999-10-25 Thread Inaam Khan
Hello i am using Java3d for the first time and am having trouble with a method to pick up specific layers of the cube. If any of you understand the cube you would know that there are nine layers which we can choose to rotate in any direction. I have made the cubelets by using the Box utility class

[JAVA3D]

1999-10-25 Thread Matt Naish
Does anyone know of a complete Java3D package which reads and displays GIS files (specifially Mapinfo and Arcinfo files)? I need a viewer which displays GIS maps (and potentially Gif maps) in 3D using either topographical or other z height information. It must be written in Java. Thanks in adva

Re: [JAVA3D] Printing Capturing Canvas3D

1999-10-25 Thread Steve Pietrowicz
"Casteel, Don" wrote: > I'm posting this class for everyone who needs to print and/or capture from > their Canvas3D objects. As I was trying to figure out how to do it, I saw > many messages in the interest group archive on the subject asking for help, > I hope this helps. > > First I must acknow

Re: [JAVA3D] Panel instead of canvas3d ?

1999-10-25 Thread Steve Grenier
Have you tried calling the Component class validate() method? I'm pretty sure this will fix your problem, not positive though. - Original Message - From: Uwe Trostheide <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 25, 1999 10:39 AM Subject: [JAVA3D] Panel instead of

[JAVA3D] Back buffer rendering

1999-10-25 Thread Yohan Baillot
Vladimir, I can understand you pain, I have had the same problem when I wanted to display coordinates on top of my graphics. Nobody wants to answer this taboo question. Same about the perspective produce by the viewing platform that seems to me wrong in Java3D: absolutely nobody wants to touch th

Re: [JAVA3D] Panel instead of canvas3d ?

1999-10-25 Thread David Hallé
Uwe Trostheide a écrit : > repaint(), show() etc does not seem to have an > effect. Has a Panel is a Container, you may use validate(). David. __ Message envoye depuis iFrance >> http://www.ifrance.com Gratuit >> Hebergemen

[JAVA3D] Panel instead of canvas3d ?

1999-10-25 Thread Uwe Trostheide
Hello All, this maybe a little bit of topic, but i have the following problem : i want to remove a canvas3d "c" and want to show a panel "p" instead. well, its easy to remove the canvas by remove(c), but when i add p by add("Center", p) the panel is not shown until i changed the size of the whol

[JAVA3D] Printing Capturing Canvas3D

1999-10-25 Thread Casteel, Don
I'm posting this class for everyone who needs to print and/or capture from their Canvas3D objects. As I was trying to figure out how to do it, I saw many messages in the interest group archive on the subject asking for help, I hope this helps. First I must acknowledge the work done by: Peter

Re: [JAVA3D] spacemouse

1999-10-25 Thread Veith, Gernot
Hi, the functionalism of the cap doesn't differ. The only question is, whether you want to have buttons and more ergonomic handling. Gernot [EMAIL PROTECTED] http://www.janet.de > -Original Message- > From: Jure Zabkar [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 25, 1999 1:21 PM

Re: [JAVA3D] Textures with Alpha values / png-format working withJava?

1999-10-25 Thread Holger Wagner
Justin Couch wrote: > > Chris Wewerka wrote: > > > has someone experience with textures using images that have alpha values? > > I read some mails in the Java2d interest group and so i think i have to use > > a png-imageproducer to get images with alpha values? > > We've got our own image loaders

[JAVA3D] spacemouse

1999-10-25 Thread Jure Zabkar
Hi! In our group we can't decide which Logicad3D spacemouse to buy, Classic or Plus. Any suggestion? Pros and cons? thanks, Jure === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "si

[JAVA3D] add child to branchgroup

1999-10-25 Thread Tria
Hi.. I made a class extended from Node. And I try to add it to one BranchGroup But it gives me java.lang.NullPointerException at javax.media.j3d.GroupRetained.addChild. I have checked the object and it's not null. How can it happen?? Thanks Tria ==