[JAVA3D] Another exception (with code)

2002-11-22 Thread Risto Rangel-Kuoppa
Hi! I was trying to get an image of the rendered frame and an unexpected exception happened .. The code is: /***/ /***/ /***/ /* * AgentGUI_01.java * * Created on November 22, 2002, 12:11 PM */ package Proj898.EnvVisualizerAgent; import com.sun.j3d.ut

Re: [JAVA3D] problem with billboard and text3d

2002-11-22 Thread Silvio Simone
Title: Message   Thanks..works fine!!!   I suggest you use the class of OrientedShape3D. -Original Message-From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]] On Behalf Of Silvio SimoneSent: November 22, 2002 3:29 PMTo: [EMAIL PROTECTE

Re: [JAVA3D] problem with billboard and text3d

2002-11-22 Thread Yu Wang
Title: Message I suggest you use the class of OrientedShape3D. -Original Message-From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]] On Behalf Of Silvio SimoneSent: November 22, 2002 3:29 PMTo: [EMAIL PROTECTED]Subject: [JAVA3D] problem with billboard and

[JAVA3D] problem with billboard and text3d

2002-11-22 Thread Silvio Simone
Has anybody also have problems with Billboards that rotate a text3d about a point. I wrote a progam with a tg. at this tg I add a Sphere and a text3d object. the text3d object has an billboard that rotate the text object about a point to the position of the view. When I zoom behind the spe

Re: [JAVA3D] Need help with Exception...

2002-11-22 Thread Kelvin Chung
Hi, Please send us a test program. Thanks. - Kelvin -- Java 3D Team Sun Microsystems Inc. Tom Rink wrote: An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x77f536f7 Function name=RtlQueryIn

[JAVA3D] RES: [JAVA3D] 3D Java

2002-11-22 Thread Nelson Troccoli
Hi all! I did print this book some time ago. For those that don´t, there´s some sites that store copies of websites. You would try to see in this sites if the book is available. Good Luck, Nelson Troccoli Jr. Sun Certified Programmer For Java 2 Platform 1.4 -Mensagem original- De: P. F

Re: [JAVA3D] 3D Java

2002-11-22 Thread P. Flavin
Still * Free * & available: --- The Souce Code for the Examples, Chapter 1 & 13: http://www.manning.com/selman/chap01.pdf http://www.manning.com/getpage.html?project=selman&filename=source.html Ben Moxon wrote: | I would never have bought the book if | I hadn't foun

[JAVA3D] Need help with Exception...

2002-11-22 Thread Tom Rink
An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x77f536f7 Function name=RtlQueryInformationActivationContext Library=C:\WINDOWS\System32\ntdll.dll Current Java thread: at javax.media.j3d.Canvas3D.end

Re: [JAVA3D] 3D Java

2002-11-22 Thread Ben Moxon
I would never have bought the book if I hadn't found it online and realised how useful it was... -Original Message- From: Yann Lemoigne [mailto:[EMAIL PROTECTED]] Sent: 22 November 2002 14:48 To: [EMAIL PROTECTED] Subject: Re: [JAVA3D] 3D Java Thanks. Bad news they removed it, it was a

Re: [JAVA3D] 3D Java

2002-11-22 Thread Yann Lemoigne
Thanks. Bad news they removed it, it was a good documentation source. :( -Message d'origine- De : P. Flavin [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 22 novembre 2002 15:45 À : [EMAIL PROTECTED] Objet : Re: [JAVA3D] 3D Java Yann Lemoigne wrote: > > First you have some demos with jav

Re: [JAVA3D] 3D Java

2002-11-22 Thread P. Flavin
Yann Lemoigne wrote: > > First you have some demos with java3d sdk > (look at demo directory under > your jdk installation directory). > > After you have > > http://java.sun.com/products/java-media/3D/collateral/ , > > www.j3d.org and many other sites > > http://www.manning.com/selman/onlinebook/H

Re: [JAVA3D] Memory Optimization SOS

2002-11-22 Thread John Wright
Ranjan, I noticed something when I was dealing with a similar issue. If you can break your data into groups so that for instance you'd have 28 branchgroups each with 1000 TG & Shape3Ds, then add the 28 to a root branch group by doing this you can "compile" each branchgroup and it's memory require

Re: [JAVA3D] global coordinates after transformation

2002-11-22 Thread Jens Allendörfer
Hi, Thanks for your answer. I had already found this method before, but I only get the complete transformation for every shape. Because I need the real global coordinates the way would be to read out the local coordinates (what is not that easy,too), get all the points out of this array, perfo

Re: [JAVA3D] 3D Java

2002-11-22 Thread Alessandro Borges
Welcome Gary!   There is several books about Java3D, look at Amazon.com   Main source -> http://java.sun.com/products/java-media/3D/ http://java.sun.com/products/java-media/3D/collateral/ (<- books tips here, as well tutorials)     The first place to solve doubts : http://www.j3d.org    

Re: [JAVA3D] 3D Java

2002-11-22 Thread Yann Lemoigne
First you have some demos with java3d sdk (look at demo directory under your jdk installation directory).   After you have http://java.sun.com/products/java-media/3D/collateral/ ,   www.j3d.org, and many other site (http://www.manning.com/selman/onlinebook/Htmls/ seem to be removed, if anyo

Re: [JAVA3D] Memory Optimization SOS

2002-11-22 Thread Artur Biesiadowski
Ranjan.George wrote: Hi All, Been struggling with this issue for quite a while now. Requirement: To be able to display a molecule using spheres (for atoms) and cylinders (for bonds between the atoms) on the Canvas3D. One shape for bond and for atom is probably out of question. You have to find

[JAVA3D] 3D Java

2002-11-22 Thread Gary Elliott
Hi Everyone,   I am interested in finding out more about 3D in Java. Does anyone know of any tutorials, websites, books, resources that I could look at.  What is Java's capacity for 3d?  Is it very difficult in Java to make basic 3D objects? Is there much use of 3D Java at the moment?  It w

Re: [JAVA3D] Memory Optimization SOS

2002-11-22 Thread Kevin Glass
Hey, I suppose in many way this is comparable to large data sets of terrains. I use a fairly large data set for my terrain by perform culling by hand. It all really depends on whether you need to see the "whole" molecule at once. If you do, you'll need a more powerful machine. However, if as I exp

[JAVA3D] Memory Optimization SOS

2002-11-22 Thread Ranjan.George
Hi All, Been struggling with this issue for quite a while now. Requirement: To be able to display a molecule using spheres (for atoms) and cylinders (for bonds between the atoms) on the Canvas3D. The size of the molecule can range from 1000s of atoms to 1s of atoms. Number of bonds per atom c

[JAVA3D] Install Anywhere J3D VM packs

2002-11-22 Thread Jeremy Booth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi ~ I've been looking at using install anywhere with j3d apps, and I can easily create vm packs for linux and windows, but I don't have easy access to other machines, so i was wondering if anyone out there had VM packs for other OS/architectures, bec

Re: [JAVA3D] MouseTranslateBehavior NullpointerException

2002-11-22 Thread Desiree Hilbring
> BoundingLeaf is used as scheduling bound in this test program but > it is not attach to scenegraph. It is an application error to do so. Ooops, I could have seen that. Thanks. > However Java3D can handle it better by disable the behavior or > throw a more meaning Exception which bug 478271