Re: [JAVA3D] Zooming & Clipping

2002-12-26 Thread Alessandro Borges
Are you using View. setBackClipDistance(double distance) and View.setFrontClipDistance(double distance) ? Alessandro > Hello Forum, > > I set the clipping distances of the view for my structure which makes the > structure cut from the front and back as desired.But, when I zoom in or zoom > out th

Re: [JAVA3D] Zooming & Clipping

2002-12-26 Thread Appalaraju.Kvrapati
Yes. I am using them. -Original Message- From: Alessandro Borges [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 25, 2002 6:59 PM To: [EMAIL PROTECTED] Subject: Re: [JAVA3D] Zooming & Clipping Are you using View. setBackClipDistance(double distance) and View.setFrontClipDistance(dou

[JAVA3D] PickRotateBehavior

2002-12-26 Thread greg baboolal
Hi, Is it possible to restrict the rotation of a particular axis for the associated transform (or branch) group? Thanks. __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com ===

[JAVA3D] Question about picking

2002-12-26 Thread Hans Horn
Dear List, is it possible to find out which mouse and / or keyboard button(s) have been pressed when a pick has occured? H. === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff

Re: [JAVA3D] Question about picking

2002-12-26 Thread Greg Huang
Yes, when a picking happened, you can recevie a mouse event object, and you can test which button was pressed by it. For example, if you want test the right button of a mouse was pressed: if( ( m_MouseEvent.getModifiers() & InputEvent.BUTTON3_MASK ) != 0 ) Greg =

[JAVA3D] Generating Spherical distributions

2002-12-26 Thread Justin Couch
Hoping I can get a bit of help because my brain is fried :( I'm putting together a particle system to generate an explosion. I'd like a spherical distribution on the generated particles but can't seem to get the maths right to do it. I'm using the following initialisation of the emitter:

Re: [JAVA3D] Generating Spherical distributions

2002-12-26 Thread Shantz Family
You might normalize the direction vector before setting the random velocity. Mike - Original Message - From: "Justin Couch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 26, 2002 9:43 PM Subject: [JAVA3D] Generating Spherical distributions > Hoping I can get a bit