Re: [JAVA3D] j3d.org site

2002-07-31 Thread Justin Couch
Dipl. Ing. Paul Szawlowski wrote: > Hi all, > am I the only one who gets only a very old version of j3d.org when > checking the site ? No, that's me still catching up. I'm actually working on it right now. I wanted to get the FTP site going first, which I'm doing right now. After that, in about 2

[JAVA3D] j3d.org site

2002-07-31 Thread Dipl. Ing. Paul Szawlowski
Hi all, am I the only one who gets only a very old version of j3d.org when checking the site ? regards Paul === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST"

[JAVA3D] Java3D features

2002-07-31 Thread Rafael Pereira
Hi... I'm a new studant of Java3D and I already work with java. But I need know about the features of Java3D... I would like to know the pros and cons of Java3D in relation to VTK and OpenGL (velocity, hard, quality and performance). I study at USP (University of São Paulo) in Brazil, and I use j

Re: [JAVA3D] choosing path

2002-07-31 Thread Josh Richmond
Hi Katja, I think you may be making things harder than they are. A Java3D loader class (e.g., Xj3D) will load a graphics file (e.g., VRML97) into a Java3D scene in memory. It does not write a separate file. So, the loader will return a BranchGroup object which you can attach to your master sc

Re: [JAVA3D] choosing path

2002-07-31 Thread Paul Byrne
Hi Katja, You might want to check out the Java3D Scene Graph Editor and the latest version of Java3D Fly Through, both of which are available from java3d.netbeans.org (under the files tab). The Editor will let you construct a scene, using your favourite loaders, you can then add a KBSplineBeahvi

Re: [JAVA3D] choosing path

2002-07-31 Thread Katja Loescher
Hi Georg, Sorry to bug you again about such a simple question. I am a Java3D beginner and don't know all the possibilities that Java3D offers. The purpose of my program is to take any virtual world, open it with my application, and allow the user to click on several points. After these points a

Re: [JAVA3D] Change background color of Canvas3D

2002-07-31 Thread Sean Sylvis
for the gif encoder, just do a google search for 'java gif encoder'. i think there is a list somewhere of java decoders/encoders for different image formats.   to create animated gifs, you can simply write a gif file each time the postSwap() method is called (you should extend the Canvas3D

[JAVA3D] wglCreateContext Failed

2002-07-31 Thread Durga.Banda
Hi, This is the first time I'm getting this error in my last 8 months dealing with Java3D. I'm having couple of line array geometries and few geometries are rendered in immediate mode. The canvas suddenly gets disappeared from the screen and when I close the application i get following messages.

Re: [JAVA3D] Canvas shape

2002-07-31 Thread Daniel Selman
Murat, Zak No, as far as I know there is no way to do this. Windows (for example) just doesn't make it easy for you. Read: http://www.codeguru.com/buttonctrl/nonrectangle_button.shtml For an example. Most of there techniques consist of drawing into a partial image and then blitting the image. T

[JAVA3D] Canvas shape

2002-07-31 Thread A. Murat Tanyer
Hi; Is there a way to create different shapes of Canvas3D? I want to create two Canvas 3Ds something similar with the attached images. Each canvas will contain different information. Thanks in advance. Murat <><>

Re: [JAVA3D] Change background color of Canvas3D

2002-07-31 Thread Raghavendra R
Hi Sean / David, Thanks for the solution. It worked very well. I also need to save the Canvas3D frames in Animated GIF format. Are there any good "Animated GIF encoders" that i can use. Thanks once again Raghav Sean Sylvis wrote: [EMAIL PROTECTED]"> After you first create the Canvas3D...//