Re: [JAVA3D] x3d VRMLLoader versus vrml97.jar for java3D

2001-11-12 Thread Thomas Gilbert Giusepe
I hope u have received yet. Thomas >From: Adrian Meekings <[EMAIL PROTECTED]> >Reply-To: Discussion list for Java 3D API <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: [JAVA3D] x3d VRMLLoader versus vrml97.jar for java3D >Date: Sun, 11 Nov 2001 21:16:25 -0700 > >Hi Thomas, >Could you p

Re: [JAVA3D] Moving viewPlataform in VirtualUniverse

2001-11-12 Thread Thomas Gilbert Giusepe
Hi there, I am trying to move my viewplataform through my SceneGraph as I have yet done successfully for SimpleUniverse plataform with keybehavior, but now for VirtualUniverse the camera doesn't go with the KeyBehavior. I have also done the setCapability (ALLOW_TRANSFORM_READ,etc). I am doing as

[JAVA3D] MouseZoom behaviour

2001-11-12 Thread Durga.Banda
Hi All, Thanks for the support for my previous query! Here I go again, When using MouseZoom class I noticed that at some level of 'zoom in' the visual object just disappears from the screen. Is there any parameter to be set to tackle this problem. Similar strange behaviour is noticed while zoomi

[JAVA3D] Java3D example

2001-11-12 Thread A. Murat Tanyer
I am a beginner to J3D and I am trying to find "MultiGeomApp.java" example which should be in the example archive file (examples1_6.jar). However I don't have that example in my examples directory. Can anybody help? Best Regards Ali Murat Tanyer ==

[JAVA3D] collision detection

2001-11-12 Thread Christoph Wille
Hello   I'd like to detect the intersections with other objects (shape3D) of a sphere that is moving around in space. Then I'd like to get the geometry of the face (coordinates of the vertices of a triangles) where that shape3D object is intersected. Can anyone give me a hint how to realize

Re: [JAVA3D] Shape3D Culling, Quick lesson required please

2001-11-12 Thread David Yazel
Java3D only does view frustum culling, no occlusion culling. You can solve the problem by building a spatial tree like an oct tree using the bounds of the shapes and then using a switch node to turn off hidden shapes. Dave Yazel - Original Message - From: Adrian Meekings <[EMAIL PROTECT

Re: [JAVA3D] MouseZoom behaviour

2001-11-12 Thread RWGRAY
There is the Bounds for the mouse behavior that has to be set. If you zoom too far the objects may go outside the bounds and zooming will no longer work. Plus there is also Back Clip Distance. If you zoom too far the objects in the scene can completely disapear. So try setting the Back Clippin

[JAVA3D] Texture and TriangleArray

2001-11-12 Thread Gael
Hi, I would like to know how to put a texture on TriangleArray? Is there a special constructor? Thx,  

[JAVA3D] how to create .gif of jpg file of a model created in a java3D program

2001-11-12 Thread thanh nguyen
hi, please help. I want to import a model that i have created by a java3d application into a word document. So, How can we create a .gif or .jpg file of the scene of an java3D application? thanks very much -Thanh Skaf

Re: [JAVA3D] Texture and TriangleArray

2001-11-12 Thread David Yazel
The texture is part of the Appearance, not part of the Geometry. A shape is both an Appearance and Geometry. So the steps are like this: make an appearance add a texture to the appearance make the triangle array (which is a geometry array) make a shape3d add the appearance to the shape3d add the

[JAVA3D] collision detection

2001-11-12 Thread Christoph Wille
Hello   I'd like to detect intersections of a sphere that is moving around in space with other objects (shape3D) . Then I need to extract the face of that object where it intersects the sphere.   Can anyone give me a hint how to realize such an intersection detection. Has anyone maybe writt

[JAVA3D] Java 3D FAQ Weekly Posting (12 Nov 2001)

2001-11-12 Thread The Java 3D FAQ
The Java 3D Frequently Asked Questions list for Monday November 12 2001 This is a posting of topics covered in the Java 3D FAQ. The answers to these questions are kept at: http://www.j3d.org/faq Please consult this list and the web site before asking questions on the mailing list. If

[JAVA3D] "Haloed lines", "lit textured lines"

2001-11-12 Thread R Vegan
Hi All: Are there any direct/indirect features in Java3D API that can facilitate the creation of: 1. Haloed lines 2. lighting effects on textured lines - there is an example in the Java3D tutorial bundle that creates textures on lines but w/o lighting effect. Would appreciate any ideas, a

[JAVA3D] Voice communication

2001-11-12 Thread Tina Manoharan
Hello, I know that this topic does not fall in the Java3D category but I was wondering if anybody knew about a simple Voice communication (voice chat) applet available to download? Thanks Tina \\|// (@ @) ---oOO---(_)--

Re: [JAVA3D] Shape3D Culling, Quick lesson required please

2001-11-12 Thread Adrian Meekings
Thankyou David. Ill give this a try Kind Regards Adrian - Original Message - From: "David Yazel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 13, 2001 1:27 AM Subject: Re: [JAVA3D] Shape3D Culling, Quick lesson required please > Java3D only does view frustum culli

[JAVA3D] UNSUBSCRIBE

2001-11-12 Thread Mark Kahrl
  -Original Message-From: Discussion list for Java 3D API [mailto:[EMAIL PROTECTED]]On Behalf Of Gianni RiccioSent: Saturday, November 03, 2001 12:51 AMTo: [EMAIL PROTECTED]Subject: [JAVA3D] Mouse Interaction Hi all, I have a very important question! I have a three d

[JAVA3D] HPGL2

2001-11-12 Thread J.Ganesan
Hi,  Is there any utility to ouput a Shape in HPGL2 format ?  Thank you. ganesan

[JAVA3D] Persistence Reduction

2001-11-12 Thread Guang Bin Liu
Hi Kevin, Paul and Fred: Thank you all for your valuable suggestions! However, in the following code: public void render() { if (gc == null) { gc = canvas.getGraphicsContext3D(); view=canvas.getView(); grt1=grat1.getGrating(); }

[JAVA3D] Javadocs

2001-11-12 Thread Zak Nixon
Can one create their own javadoc tags that create pages that conform to the standard javadoc generated pages? Is there a way to just define what it does and it does it for me?   Thanks,   Zak

Re: [JAVA3D] maya or 3dstudio models

2001-11-12 Thread Shane Blake
I have found them a little on the light side, ie no way of extracting the animation keyframe information, ...so once I have the animation code in J3D i will be writing a 3ds max exporter for j3d - Shane *

[JAVA3D] Interface with a Joystick

2001-11-12 Thread Pramual Suteecharuwat
Dear all, As far as I try to find information about how to inferface Java3D with a Joystick (I am using MS Side Winder Force Feedback 2), I found a document from j3d.org about the InputDevice&Sensor, but I cannot understand what exactly I have got to do. I also found some information about the J