[JAVA3D]

2000-01-05 Thread neosphere
RSET RSET RSET MAIL FROM:<[EMAIL PROTECTED]> RCPT TO:<[EMAIL PROTECTED]> DATA From: "Laurent Gauthier" To: [EMAIL PROTECTED] Date: Thu, 6 Jan 2000 02:03:48 + MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: Re: [JAVA3D] Access Named Nod

Re: [JAVA3D] Inventor loader

2000-01-05 Thread Olivier fillon
a piece of cake use iv to vrml1, then vrml1 to vrml2 which will successfully load with the j3d vrml loader no real problem there vrml1to2 is quite common, one was provided with defunct cosmoplayer if I remember..do a web search Olivier Olivier FillonMinestar Project [EMAIL PROTECTED] Mincom

Re: [JAVA3D] PickingCallback interface

2000-01-05 Thread Daniel del Río
Hi Javier, The method transformChanged(int type, TransformGroup t) could return a null in the t paremeter. The transformGroup is the object taht PickRotateBehavior modifies, the type is: NO_PICK (in this case the transformGroup t is null ) ROTATE (the PickRotateBehavior modifies th

Re: [JAVA3D] Dynamic Plotting using JCChartComponent

2000-01-05 Thread Olivier fillon
Not exactly the right newsgroup Olivier FillonMinestar Project [EMAIL PROTECTED] Mincom Limited Ph.+61-7-3303-3344 61 Wyandra Street Fax+61-7-3303-3232 Teneriffe Qld. 4005. Australia Company home page: http://www.mincom.com/ Personal home page: http://www.powe

Re: [JAVA3D] reading binary data files

2000-01-05 Thread Rudolf J.C. Buijs
Hi John:   I had the same problem with byte-ordering of floats: I could solve it by reading an integer and then converting it with the following method. If someone else has a better idea I would love to know.   --- Snippet ---       // My files were written with Intel floats, so...    privat

[JAVA3D] Inventor loader

2000-01-05 Thread Istvan Racz
Hi ! Has somebody ever written a Java3D iv loader? Or can somebody send me a good 'Inventor file format(iv) --> another format' converter? When I try to use the TGS's Webspace and I convert an iv file into a VRML1.0 ascii file ( with the WebSpace ), I cannot load this VRML file with my VRML97 lo

[JAVA3D] Dynamic Plotting using JCChartComponent

2000-01-05 Thread Malguy, Eric G.
Hi all, I have a problem and cannot figure this one out! Does anyone have an example available using a dynamic plot similar to the following code? I am plotting 2 different object events occuring at different times but it is not getting properly plotted, the second object start time is set to th

Re: [JAVA3D] reading binary data files

2000-01-05 Thread Dickinson, John
I am going to answer my own question as I found I had to do what I proposed and I am sure others will too. Here are the two functions/methods I made: // read 4 bytes and returns it as an int given order of bytes least to most significant private int readInt(DataInputStream dis) throws java.io.IO

[JAVA3D] need a complex scene

2000-01-05 Thread Dave Frost
Hi everyone, I have just got myself a voodoo2 graphics card - i would like to put it through it's paces - does anyone know of a good j3d program to do this ? I have installed directX 7, and the voodoo2 reference drivers from 3dfx.com but i did not see opengl referred to in the drivers list ?? is

[JAVA3D]

2000-01-05 Thread ELUCID Solutions
Hi All, This is my first time on the JAVA3D-INTEREST list. I'm a system software developer wanting to learn how to program 3D type of program. I've been looking through java.sun web site and found Java 3D. Altimately, I would like to create 3D objects (i.e, hands) that change hand size based on

Re: [JAVA3D] Good model loaders

2000-01-05 Thread giles
Couple of issues here. .3ds file format is an old format by autodesk which is not the native format of 3DSMax(.max) It doesn't support much more then geometry. The best way I have found to get models out of 3DSMax is to use VRML. It will preserve alot of the features from Max but certainly not

[JAVA3D] Sun workshops

2000-01-05 Thread Robert Alexander
Hello, Does anyone know where and when Sun might be offering any free workshops covering Java 3D, Jini, and other Java related technologies? Thanks! -Robert === To unsubscribe, send email to [EMAIL PROTECTED] and include in

[JAVA3D] reading binary data files

2000-01-05 Thread Dickinson, John
I know I could post this to a general java list but the problem came up while looking at building a loader for STL files (used for faceted descriptions of 3D objects to be built using rapid prototyping processes). Questions: 1) though I have started building a loader for STL files if there is one

Re: [JAVA3D] Objects disappear in the background...

2000-01-05 Thread Tiago Silva
Try to use something like this: your_canvas_object.getView().setBackClipDistance(double distance) Hope this helps Tiago Peter Lueders wrote: > > Hi, > i'm testing a little with a example-programm from j3d-tutorial EarthAppl > (SimpleUniverse, 1 sphere). > if i try to set the position o

Re: [JAVA3D] Objects disappear in the background...

2000-01-05 Thread G . Veith
Hi Peter, enlarge backClipDistance of view Gernot [EMAIL PROTECTED] Peter Lueders <[EMAIL PROTECTED]To: [EMAIL PROTECTED] AMBURG.DE> cc: Sent by: Discussion list Sub

[JAVA3D] Objects disappear in the background...

2000-01-05 Thread Peter Lueders
Hi, i'm testing a little with a example-programm from j3d-tutorial EarthAppl (SimpleUniverse, 1 sphere). if i try to set the position of the sphere to 0,0,-100 it disappears in the background... how can i make the objects stay visible even if they are far away ? i tested it with rootBranchGroup.s

[JAVA3D] ANNOUNCE: J3dTree update

2000-01-05 Thread Daniel Selman
I've posted another minor update to J3dTree. A drop in replacement of the JAR file as usual. http://www.tornadolabs.com/News/ Release Notes: - Added detailed reporting for Object (methods and fields) - Added detailed reporting for Transform3D - Added detailed reporting for Alpha - Added detaile

[JAVA3D] JBuilder 2.0

2000-01-05 Thread Eric Arnold
I know this is a little off topic, but has anyone figured out how to fix the open file dialog box in JBuilder2.0? Because of the wonderful little tabs they put on the top to flip between files and packages, the top of the useful part of the window is cut off. I thought this was a poorly overlook

[JAVA3D] setScale

2000-01-05 Thread Eric Arnold
I was just wondering why the setScale method doesn't seem to update the size of objects at run time? I am trying to get the objects to grow over time (it is a predator/prey simulation). Is there some other way I should go about it? Thanks Eric ==

Re: [JAVA3D] BoundingBox()?

2000-01-05 Thread Daniel Selman
Magnus, 1. No. You would have to create a wireframe Box of the same size. Probably the best way to do this would be to create a Behavior that modified a Box's size/position to correspond with the Bounds of an object. 2. The BoundingBox is also rotated. It is defined in the local coordinate syste

Re: [JAVA3D] GetNamed

2000-01-05 Thread Daniel Selman
kwc,   I think you might be experiencing a bug/compatability problem with the VRML loader. Perhaps Doug can suggest a fix?   Sincerely,   Daniel Selman   This is what Doug G. wrote on the subject about 2 months ago: This problem comes from a difficult problem in the implementation of VRML

Re: [JAVA3D] Happy New Year / Re: JAVA3D: making a custom mouse picking behavior

2000-01-05 Thread Mike Goldwater
Hi, I also need the answer to Dennis Goetz's question about examples of PickMouseBehaviour , however Doug Gehringer implies it will be better under the up-coming new Java3d release. Regards Mike ~ +44 (0)20 8949 0353 (Work) +44 (0)7956 359001 (Mobile) +44 (

[JAVA3D] BoundingBox()?

2000-01-05 Thread Magnus Andersson
Hello! I have three little questions: 1) Is it anyway you can make a BoundingBox visible? 2) If I have an BoundingBox with my object and are manipulating the TransformGroup above it (rotating the object), how will this affect the BoundingBox? 3) Do I manually have to rotate the BoundingB

[JAVA3D] Sun Texture

2000-01-05 Thread Jürgen Baier
Hi, I'm currently developing a solarsystem using VRML and a Java applet to control the world. My problem: I found realistic textures of all planets. But now my sun does not look very well (just a yellow sphere). Do you know where to find a sun texture? I couldn't find any. And, I also search for

Re: [JAVA3D] offtopic-couldn't find javacc

2000-01-05 Thread G . Veith
Mohammend, just go down the site. click on "download pages". You will find links to download the documention and the classes. good luck :) Gernot [EMAIL PROTECTED] Mohammed Akacem <[EMAIL PROTECTED]To: [EMAIL PROTECTED]

[JAVA3D] PickingCallback interface

2000-01-05 Thread Sánchez Sanz, Javier
Hi, I'm trying to implement the PickingCallback Interface using the method void transformChanged(int type,TransformGroup tg) and I use the PickRotateBehavior. my code is 321: public class MyCallbackClass extends Object implements PickingCallback{ 322: Transform3D t3=new Transform3D(); 323

[JAVA3D] 3ds loaders

2000-01-05 Thread Sánchez Sanz, Javier
Hi, does anyone know if there is a 3ds loader where I can import the figure with its textures?! I'm using portfolio but I can't import the textures. Or there is a way of doing this without importing textures, just with the branchgroup that the loader gives and inserting textures to the ojbect? Th

Re: [JAVA3D] offtopic-couldn't find javacc

2000-01-05 Thread Mohammed Akacem
[EMAIL PROTECTED] schrieb: > hi Mohammed, > > go to http://www.suntest.com/JavaCC/ > > Gernot > [EMAIL PROTECTED] > > Mohammed Akacem > <[EMAIL PROTECTED]To: [EMAIL PROTECTED] > .DE>cc: >

[JAVA3D] Happy New Year / Re: JAVA3D: making a custom mouse picking behavior

2000-01-05 Thread Juergen Neubauer
Hello Denis, when looking thru the maillist - I found your question. Did you solve your problem ? I try to load a vrml file into Java3D-Canvas and want to get back the namedObjects if clicked somewhere on the model. thanx for your support -Juergen. Dennis Goetz schrieb: > Hello, > > I was w

Re: [JAVA3D] offtopic-couldn't find javacc

2000-01-05 Thread G . Veith
hi Mohammed, go to http://www.suntest.com/JavaCC/ Gernot [EMAIL PROTECTED] Mohammed Akacem <[EMAIL PROTECTED]To: [EMAIL PROTECTED] .DE>cc: Sent by: Discussion Subject

[JAVA3D] offtopic-couldn't find javacc

2000-01-05 Thread Mohammed Akacem
Hi, I want to generate a parser for a vrml2 format.does anyone knows where the javacc is available to download thanks a lot Mohammed === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the messag

Re: [JAVA3D] [[JAVA3D] Java3D API tutorials and books]

2000-01-05 Thread Jon Barrilleaux
The "3D User Interfaces With Java 3D" book is in final reviews. It should be out soon. Its emphasis is on applications. --jon > Date:Tue, 4 Jan 2000 10:23:48 -0500 > From:"Dickinson, John" <[EMAIL PROTECTED]> > Subject: Re: [[JAVA3D] Java3D API tutorials and books] > > Anyone read the