Re: [JAVA3D] A problem

2003-09-25 Thread ilan kaiser
Hi, Thanks a lot for your good will. Just to let you know the reason for the problem was Java3D was unable to find my video card - I had to change the color bits to 16 from 24 and then every program ran well. Ilan - Original Message - From: "Michael Pfeiffer" <[EMAIL PROTECTED]> To: <[EMAI

Re: [JAVA3D] A problem-regarding Canvas3D Creation

2003-09-25 Thread ilan kaiser
Dear Mr. Borges, I thank you from the bottom of my heart. I simply changed to 16 bit and it solved the problem. Just for my curiousity : As you mention a tip :" set Z-Buffer depth to (real)32 bits; (Kyro, Matrox and other vcards tries to cheat Z-Buffer, but Java3D does not accept it);" - How tech

Re: [JAVA3D] A problem: Canvas3D constructed with a null GraphicsConfiguration

2003-09-25 Thread ilan kaiser
Thanks a lot for your good will. Just to let you know the reason for the problem was Java3D was unable to find my video card - I had to change the color bits to 16 from 24 and then every program ran well. - Original Message - From: "P. Flavin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: [JAVA3D] problems in Using xj3d to read wrl file's animation data

2003-09-25 Thread hterrolle
Send me your personal adresse and you will get my help. i do not want to span the list. herve it is quite easy but you nee to spend at least half to one day to make the your keystore for the jar. It is awfull to implement but it works. i wiull not help you tonigth but i will send you everything

Re: [JAVA3D] problems in Using xj3d to read wrl file's animation data

2003-09-25 Thread Alessandro borges
Hi, I have no ideia how to make WebStart for Java3D, so I will appreciate your help ;) I am downsizing the model, from 50k to 10k polygons, so old vcards will be able to run it at high FPS. Alessandro Borges --- hterrolle <[EMAIL PROTECTED]> escreveu: > Hi aleandro, > > If you need help to make

Re: [JAVA3D] problems in Using xj3d to read wrl file's animation data

2003-09-25 Thread hterrolle
Hi aleandro, If you need help to make your demo running with WEB START. i will help you with pleasure. You help me already I think it is interesting to see the demo Herve -Message d'origine- De : Alessandro borges <[EMAIL PROTECTED]> Ŕ : [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date : jeud

Re: [JAVA3D] swing paint problems

2003-09-25 Thread Paul Brown
Apologies. The painting of the icons was a red herring. I now believe that my problems are the result of using the com.sun KeyNavigateBehaviour. From looking at the source code, it seems to wake on every frame. Consequently, it means the cpu is running at 100% and there isn't time to do anything e

Re: [JAVA3D] problems in Using xj3d to read wrl file's animation data

2003-09-25 Thread Alessandro borges
Hi, I am working on it. I am using a Poser model exported to vrml format, and I load the model using SUN's vrml loader. I am not using vrml features, just the geometry data. I split the model, and put each part in TG, and with a XML (under development) file configure the relationship between the p

Re: [JAVA3D] A problem

2003-09-25 Thread Alessandro borges
Ilan, I guess your Java3D was unable to find your video card. some tips : * use 16 or 32 color bits depth; (256 colors will not run) * set Z-Buffer depth to (real)32 bits; (Kyro, Matrox and other vcards tries to cheat Z-Buffer, but Java3D does not accept it); * if you have more than one vide

Re: [JAVA3D] A problem: Canvas3D constructed with a null GraphicsConfiguration

2003-09-25 Thread P. Flavin
Proper Canvas3D construction: Try this program and method: |public void init() |{ | | setLayout( new GridLayout( 1, 2 ) ); | | /*-- old way -- | * | *GraphicsConfiguration config = | * SimpleUniverse.getPreferredConfiguration( ); | */ |