Re: [JAVA3D] DXF

2004-03-04 Thread Rudy Wuite
r own decoder, and use a huge array of test files output by different vendors, and test on each one.   Cheers Rudy - Original Message - From: Bassam To: [EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 3:38 AM Subject: Re: [JAVA3D] DXF I tried the file loader

Re: [JAVA3D] DXF

2004-03-02 Thread Bassam
- Original Message - From: João Paulo To: [EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 2:42 AM Subject: [JAVA3D] DXF Hi, exist a way to load and manipulate or identify the objects in a DXF file in Java 3D ?   thanks   J.P

[JAVA3D] DXF

2004-03-02 Thread João Paulo
Hi, exist a way to load and manipulate or identify the objects in a DXF file in Java 3D ?   thanks   J.P. === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST".

[JAVA3D] DXF Problems

2002-04-19 Thread Silvano Malfatti
Hi I am having problems with DXF too.. But I don´t know how to insert the DXF files into my Universe java3D... did you know what loader I must user... because I tried with DXF_Loader, Loader_DXF, ModelLoader and didn´t get sucess... this error happend.. Do not call this directly Exce

Re: [JAVA3D] dxf to java3d

2002-04-01 Thread Andreas Jerke
API [mailto:[EMAIL PROTECTED]] On Behalf Of silvano ::Sent: Montag, 1. April 2002 16:56 ::To: [EMAIL PROTECTED] ::Subject: [JAVA3D] dxf to java3d :: :: ::can I convert dxf files to Java3D? or I need to convert dxf files to vrml, and after add vrml in my universe java3D using ::loaders. :: :: ::how

Re: [JAVA3D] dxf to java3d

2002-04-01 Thread Andrew Sinclair
silvanoSent: Monday, April 01, 2002 11:26 AMTo: [EMAIL PROTECTED]Subject: [JAVA3D] dxf to java3d can I convert dxf files to Java3D? or I need to convert dxf files to vrml, and after add vrml in my universe java3D using loaders.     how can I do this?   can I use any tool to

[JAVA3D] dxf to java3d

2002-04-01 Thread silvano
can I convert dxf files to Java3D? or I need to convert dxf files to vrml, and after add vrml in my universe java3D using loaders.     how can I do this?   can I use any tool to convert dxf to vrml or java3D?         Thanks a lot.            

Re: [JAVA3D] DXF loader problem

2001-12-04 Thread Desiree Hilbring
> Hi Desiree > > > we are using the NCSA portfolio dxf loader and are trying to load a > > dxf-file. The following code results in a NumberFormatException, while > > loading the scene. > > Yep I've also experienced the same problem in the past let me guess you > exported the DXF from 3dStudio (MAX

Re: [JAVA3D] DXF loader problem

2001-12-04 Thread Joachim Diepstraten
Hi Desiree > we are using the NCSA portfolio dxf loader and are trying to load a > dxf-file. The following code results in a NumberFormatException, while > loading the scene. Yep I've also experienced the same problem in the past let me guess you exported the DXF from 3dStudio (MAX) EOF, J.D.

[JAVA3D] DXF loader problem

2001-12-04 Thread Desiree Hilbring
Hi, we are using the NCSA portfolio dxf loader and are trying to load a dxf-file. The following code results in a NumberFormatException, while loading the scene. try{ ModelLoader modelLoader = new ModelLoader(); Scene scene = modelLoader.load(path); featurel

Re: [JAVA3D] DXF file format representation

2001-01-23 Thread Josh Richmond
create a composite single image. Then convert the composite image into DXF file Format. Thanks Arun >From: Justin Couch <[EMAIL PROTECTED]> >Reply-To: Discussion list for Java 3D API <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: [JAVA3D] DXF file format repres

Re: [JAVA3D] DXF file format representation

2001-01-23 Thread Arun Singal
D]> >To: [EMAIL PROTECTED] >Subject: Re: [JAVA3D] DXF file format representation >Date: Tue, 23 Jan 2001 13:46:14 + > >Arun Singal wrote: > > > > Hi > > I need a package to convert 3D DXF image file to Java understandable >object > > files. > >

Re: [JAVA3D] DXF file format representation

2001-01-23 Thread Justin Couch
Arun Singal wrote: > > Hi > I need a package to convert 3D DXF image file to Java understandable object > files. If you need to use Java 3D, then look here: http://www.j3d.org/utilities/loaders.html > Also please tell me if by doing so, do I loose any information from > the 3D DXF file. That

[JAVA3D] DXF file format representation

2001-01-22 Thread Arun Singal
Hi I need a package to convert 3D DXF image file to Java understandable object files. Also please tell me if by doing so, do I loose any information from the 3D DXF file. In my application I need to rotate the converted 3D data set and then take snapshots at different angles making 10 different 2D

Re: [JAVA3D] dxf

2000-09-26 Thread Shlomo Hershkop
do what i did. convert the dxf to obj (i had to go through iv but there might be a way to do it straight), then use sun's obj loader (its in the examples) to display it. there's actually a few obj loaders out there, also one by nsca. ~Shlomo On Tue, 26 Sep 2000, Kevin Xu wrote: > Hi > > I try