F�bio Magalh�es wrote:
>I tried this code, because someone in the list sugest
>me, but an error occurs. Where are the errors ?
>
>
>//----------------------------------------------------------------------------
> //Construindo um ContentBranch
> private BranchGroup constructContentBranch()
> {
> Scene myVrmlScene = null;
>
> try
> {
> VRML97Loader ldr = new VRML97Loader();
> // set various flags here if you want
>behaviours etc
> myVrmlScene =
>ldr.load("C:\\Teste_JAVA3D\\GaCIVBrowser2\\cube.wrl.");
> }
>
> catch (Exception e)
> {
> System.out.println("Could not open VRML
>file...existing");
> System.exit(1);
> }
>
Change this catch to read:
System.out.println(e.getMessage());
e.printStackTrace();
and send the output to me and I'll take a look at it.
>
--
Alan Hudson
President: Yumetech, Inc. http://www.yumetech.com/
Web3D Open Source Chair http://www.web3d.org/TaskGroups/source/
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".