Re: [JAVA3D] VRML97Loader and Appearances

2003-11-06 Thread Alan Hudson
Rainer Blum wrote: Hello Justin, thank you for the information. Could you give me some hints on how exactly I can use the multitexture abilities you mentioned? What I did up to now, was to go to every appearance node in the SceneGraph and set new TextureAttributes with TextureMode MODULATE. This w

Re: [JAVA3D] VRML97Loader and Appearances

2003-11-06 Thread Rainer Blum
Hello Justin, thank you for the information. Could you give me some hints on how exactly I can use the multitexture abilities you mentioned? What I did up to now, was to go to every appearance node in the SceneGraph and set new TextureAttributes with TextureMode MODULATE. This works, but unfortuna

Re: [JAVA3D] VRML97Loader and Appearances

2003-11-03 Thread Justin Couch
Rainer Blum wrote: I'm using the Xj3D VRML97Loader to load textured geometries into a Java3D scene. My problem is, that the textured surfaces are not shaded, while the non-textured are. Yes, this is the correct behaviour. VRML97 and X3D both require that textured surfaces are to use replace mode. O

[JAVA3D] VRML97Loader and Appearances

2003-11-03 Thread Rainer Blum
Hi all, I'm using the Xj3D VRML97Loader to load textured geometries into a Java3D scene. My problem is, that the textured surfaces are not shaded, while the non-textured are. Therefore, I go to every appearance node and change the TextureMode: TextureAttributes texAtt = new TextureAttributes(

Re: [JAVA3D] VRML97Loader

2003-10-15 Thread Serge Bernier
Il be back with a public login!! Serge Selon Jeremy Booth <[EMAIL PROTECTED]>: > > Do you know who to work this problem. Vrml97Loader need some jar file to > > work properlly. I put those in the same directory where my applet is (On > > the webCT server). Is it enought?? > > You will need to re

Re: [JAVA3D] VRML97Loader

2003-10-15 Thread Jeremy Booth
> Do you know who to work this problem. Vrml97Loader need some jar file to > work properlly. I put those in the same directory where my applet is (On > the webCT server). Is it enought?? You will need to reference it in your applet tag in the html, but apart from that, I think that will be enough.

Re: [JAVA3D] VRML97Loader

2003-10-15 Thread Serge Bernier
Good I understand, Thanks for your help. Do you know who to work this problem. Vrml97Loader need some jar file to work properlly. I put those in the same directory where my applet is (On the webCT server). Is it enought?? Do I need some authentification from the server, like a certificate, to be

Re: [JAVA3D] VRML97Loader

2003-10-15 Thread Jeremy Booth
> What you meen by in a normal web browser?? yes > Im able to open the file in explorer without problem like a normal VRML > file. but that won't go through what ever your web server software is (apache/iis etc), and the fact that the error message gave a url and an error code of 403 is a big hi

Re: [JAVA3D] VRML97Loader

2003-10-15 Thread Serge Bernier
What you meen by in a normal web browser?? Im able to open the file in explorer without problem like a normal VRML file. To be more exact, my applet use two loader: One from sun VrmlLoader and one from X3DJ (VRML97Loader). When I load a vrml file with the sun loader everything is fine. The proble

Re: [JAVA3D] VRML97Loader

2003-10-15 Thread Jeremy Booth
> I get the following error : > > ParsingErrorException > > com.sun.j3d.loaders.ParsingErrorException: File not found. > http://www.cours2.polymtl.ca:80/PHS3901/NotesCours/Chap4/Vibrations_Symetries_M > olecules/Molecules/C6H6_mode_1.wrl > Response code: 403 403, permission denied, try getting tha

[JAVA3D] VRML97Loader

2003-10-15 Thread Serge Bernier
Hi all, I have a problem with the VRML97Loader. I created a applet witch load some vrml files. The applet is signed and everything work fine when I call the applet from an HTML file saved on my computer. The same applet is on a web server and it crash when I load a VRML file with the VRML97Loader.

[JAVA3D] vrml97loader

2003-08-14 Thread Serge Bernier
hi all, I'm currently using a switch group to display a scratch book animation of vrml objects. Each time a vrml file (2M size) is parsed it is added to the switch target. After three load /** Scene = null; for(all the vrmlObject){ try { s = loader.load(vrmlObject.getPath());

Re: [JAVA3D] vrml97loader

2003-08-14 Thread Serge Bernier
I FINALLY GOT IT, it was a really simple as always. If only some documentation for that kind of problem (setting) was avalaible it could save me a lot of time!!! For those who are running program under Sun One Studio CE and want to increase the MAX HEAP Size to the VM, there the instruction: 1-

Re: [JAVA3D] vrml97loader

2003-08-14 Thread trz
Serge Bernier wrote: and I get the same error. Does anybody have a hint except play with the memory parameters?? Who can I target the problem?? Hi, not a great hint, but, if it's not already so, you could try to create a new loader each time you load the file. Maybe collecting the old loader could

Re: [JAVA3D] vrml97loader

2003-08-14 Thread Alessandro Borges
Too much data to handle. Even using -Xincgc is not possible to cut the data alive in the scene graph. Try to dispose or manage the data outside of the view, if possible. Another approach is to load the vrml's, save then as SceneGraphObject, and just load that saved branch when you need. After usin

Re: [JAVA3D] vrml97loader

2003-08-14 Thread Nikolai V. Chr.
Serge Bernier wrote: and I get the same error. Does anybody have a hint except play with the memory parameters?? Who can I target the problem?? I had the same problem once. What I did was I use the program Chisel to "create DEF/USE" in the VRML file, this will make it much smaller in memory once

[JAVA3D] vrml97loader

2003-08-14 Thread Serge Bernier
hi all, I still have a big problem with the loading of vrml files with vrml97loader. Im loading heavy vrml files to make a scratch book animation. I load the files in a for loop and attach them to a switch group. When I look at the task manager during the process, my java3d program always send my

Re: [JAVA3D] vrml97loader

2003-08-10 Thread Serge Bernier
Do you have the key to use trhe program??? Serge Bernier Selon "Nikolai V. Chr." <[EMAIL PROTECTED]>: > Serge Bernier wrote: > > >and I get the same error. Does anybody have a hint except play with the > memory > >parameters?? Who can I target the problem?? > > > > > I had the same problem once

Re: [JAVA3D] VRML97Loader (Xj3D M5) Fails (again); Sun VRML Loader Works (again)

2002-10-28 Thread Alan Hudson
P. Flavin wrote: 'new' Xj3d Loader Failure Problem Report posted to Java3d-interest List --- ... WORKS GREAT with the 'old' Sun VRML Loaders ... screen capture of VRML Loaders Working with your VRML file: http://www.fronti

[JAVA3D] VRML97Loader (Xj3D M5) Fails (again); Sun VRML Loader Works (again)

2002-10-28 Thread P. Flavin
'new' Xj3d Loader Failure Problem Report posted to Java3d-interest List --- ... WORKS GREAT with the 'old' Sun VRML Loaders ... screen capture of VRML Loaders Working with your VRML file: http://www.frontiernet.net/~imaging

Re: [JAVA3D] VRML97Loader(Xj3D M5)

2002-10-28 Thread Justin Couch
Claus Giesenberg wrote: Since the replacement of this Loaders against the new VRML97Loader(Xj3D M5) two mistakes occur. Both of these issues were known problems with the M5 release. We've since fixed them in later development releases, which you can find here: http://www.xj3d.org/snapshots.htm

[JAVA3D] VRML97Loader(Xj3D M5)

2002-10-28 Thread Claus Giesenberg
Hi ! Some time ago I developed an own browser that uses the class VRML97Loader(Xj3D M2). Since the replacement of this Loaders against the new VRML97Loader(Xj3D M5) two mistakes occur. 1) A static VRML-file is loaded indeed, but it is not represented although lights are available in scene and fil

[JAVA3D] Vrml97Loader not in xj3d-unix.tar.gz

2001-12-14 Thread Michael Knezevic
hi, i just want to say that the VRML97Loader is not in the xj3d-j3d.jar include which comes with the download xj3d-unix.tar.gz. someone should update the gzip-file. luckily someone mailed me the xj3d-j3d.jar with the loader class. thanx cu mk __

Re: [JAVA3D] VRML97Loader

2001-12-07 Thread Giles
Laurent Cathala wrote: >Hi, > >Does someone knows where i can find the .class file for the VRML Loader >x3d.src.org.web3d.j3d.loaders.VRML97Loader ? > I sent you the classes under seperate cover. I'll try to update the install today to have this already in the correct jar files. -- Alan Hudson

[JAVA3D] VRML97Loader

2001-12-07 Thread Laurent Cathala
Hi, Does someone knows where i can find the .class file for the VRML Loader x3d.src.org.web3d.j3d.loaders.VRML97Loader ? Thanks Laurent === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the mes