Re: [JAVA3D] MouseBehaviorCallback

2002-07-11 Thread Eric Reiss
The mousebehavior callbacks are like feedback loops to the program that allow you to know which transformgroup was acted upon by whichever mousebehavior generated the callback. If you look through the examples of mouse behaviors, I believe that there is an example that does what you propose. One

Re: [JAVA3D] The Matrix and Quaternions FAQ

2001-12-17 Thread Eric Reiss
I don't recall sending it before but I may have. The main reason I am pointing it out now is that the version on J3D says version 1.2 and has numerous errors and the version on the link I provided says 1.7 and it has many corrections. At 06:45 AM 12/18/2001 +1100, you wrote: >Er

[JAVA3D] The Matrix and Quaternions FAQ

2001-12-17 Thread Eric Reiss
After Justin's recent reply to a newbie about performing Rotations in Java3D, I noticed Justin's link to the J3D Org's info on quaternions. Even though i am not really involved in Java3D any longer I decided to take a peek. When I followed the link: http://www.j3d.org/faq/manipulating.html#quate

[JAVA3D] Re: [JAVA3D] ´ð¸´: [JAVA3D] Please help me!

2001-12-05 Thread Eric Reiss
Who let the idiots on the list? 5MB attachments to everyone.  At 07:24 PM 12/05/2001 +0800, Fangsheng Wu wrote: hi, Gianni, here is a j2re-1.3-win-rt,you can install it first, then you can see the applet3D in IE, if you have better plugin, pls tell me. wish you luck!   Wu Fangsheng   -ŸË®ö

Re: [JAVA3D] MousePick!

2001-11-21 Thread Eric Reiss
ccurs when the mouse pointer is on an object for a time, is it possible to do something similar in Java 3D?.   Thanks. (and sorry for mi english please). - Original Message - From: Eric Reiss To: [EMAIL PROTECTED] Sent: Wednesday, November 21, 2001 7:20 PM Subject: Re: [JAVA3D] MousePick! sor

Re: [JAVA3D] MousePick!

2001-11-21 Thread Eric Reiss
sorry, i need to clarify one thing. I haven't been actively doing any Java3D and forgot that the callback method is implemented in the picking versions of those three behaviors.  So what I was talking about would require using the extended picking versions of those three behaviors. The Sun example

Re: [JAVA3D] MousePick!

2001-11-21 Thread Eric Reiss
Each of the three behaviors you mentioned has a callback method which when setup returns the transformgroup of the object that was zoomed, translated, or rotated. From this transformgroup, you can get the Transform3D and hence the three coordinates. If you want to simply get the three coordinates

Re: [JAVA3D] How to rotate objects?

2001-09-30 Thread Eric Reiss
r's >transform", remember that the cylinder has not been rotated yet. I don't >have those rotations. I have a pair of endpoints. > >This problem could like be solved with my own custom code, but I wonder if >Java3d has any implicit tools (Matrix, Vector) which can f

Re: [JAVA3D] How to rotate objects?

2001-09-30 Thread Eric Reiss
>particular axis. Just know the endpoints. So how would I transform a >pair of endpoints into angles that allow me to rotate that cylinder? > >-- John > >On Sun, 30 Sep 2001, Eric Reiss wrote: > > > Date: Sun, 30 Sep 2001 20:42:22 -0400 > > From: Eric Reiss <[EMA

Re: [JAVA3D] How to rotate objects?

2001-09-30 Thread Eric Reiss
Points or Vectors describing two endpoints? I don't >necessarily know the angle for rotations. Sometimes I start with the >endpoints. > >-- John > >On Sun, 30 Sep 2001, Eric Reiss wrote: > > > Date: Sun, 30 Sep 2001 13:48:34 -0400 > > From: Eric Reiss <

Re: [JAVA3D] How to rotate objects?

2001-09-30 Thread Eric Reiss
This is actually very simple. Suppose you already know the TransformGroup for an object you want to rotate to a specific angle around the X axis. Lets call this Object TransformGroup JohnTG. Transform3D tempT3D = new Transform3D(); (JohnTG).getTransform(tempT3D); Matrix3d someRotationMatrix =

Re: [JAVA3D] Eric, is that a multi-viewPlatform?

2001-06-21 Thread Eric Reiss
u will >find Z axis for main object now point where the >negative Y axis previously pointed. but if you press >forth,you will find Z axis for aux object has not been >changed at all! > >Does anybody can tell me how to move an object but ont >the viewPlatform? > >than

Re: [JAVA3D] ANFY3d API

2001-05-29 Thread Eric Reiss
I'd like to add this type of message to my list of pet peeves. Along with the inevitable "unsubscribes", virus filled attachments, "virtual card file" attachments that proliferate in my attachment directory, and finally the out-of-office auto-replies when I post a message or reply, we now need to

Re: [JAVA3D] Mouse Controls

2001-05-16 Thread Eric Reiss
I have an odd workaround but it may lead you in the right direction. I used the picking behaviors as a model and created two new behaviors, one for selecting an object using the pickingcallback method and the other to fire off a dialog box when someone doubleclicks. The double click method also

Re: [JAVA3D] com.sun....OrbitBehavior problem

2001-04-05 Thread Eric Reiss
Unfortunately, I haven't had time to work on it much this spring.  And I haven't tried the newest J3D release. At 10:09 AM 04/05/2001 -0400, you wrote: Hi Eric,   I am currently using a variation of your behaviour. Unfortunately, a bug in the Transform3D code in the newest release of J3D is ca

Re: [JAVA3D] com.sun....OrbitBehavior problem

2001-04-05 Thread Eric Reiss
Josh, you might want to look at my orbit behavior. It does not snap the view so that the new center is in the middle of the view. Of you want to orbit an object that is centered in the view, you must translate the view so that the object is centered and then you can orbit the object as if it was

Re: [JAVA3D] Collision Detection in J3D 1.2.1 beta2

2001-03-26 Thread Eric Reiss
Do you realize that you were probably infected with the Navidad virus from the person that posted messages this morning and are now sending them back to the Java3D list? At 04:19 PM 03/26/2001 -0800, you wrote: >Hi, attached is an example. >The objects of concern are only near to collide. >And

Re: [JAVA3D] PickShape( ) ....|:0(.

2001-03-23 Thread Eric Reiss
I'm not familiar with the userData at all. I remember reading some post about it and thought it might have been useful but since I had already solved my problem and wasn't aware of the userData method at the time, I never followed up on it. Your method is probably simpler (I can't comment since

Re: [JAVA3D] PickShape( ) ....|:0(.

2001-03-23 Thread Eric Reiss
If you do it using the method I use, you need to look at the callback methods of the picking behaviors. But first, you say when someone picks object A, you want to change the color of object Qa. So is there a direct correspondence from object A to Qa and from B to Qb and from C to Qc, and so on

Re: [JAVA3D] Rotating stuff

2001-03-18 Thread Eric Reiss
I think you might want to check out : http://www.sigda.org/Eric/java3d/behaviors/index.htm I'm not sure but the latest release of Java3D might have fixed the problem you're having. At 09:33 PM 03/17/2001 -0800, you wrote: >I have an object in a viewer which I rotate by dragging either up/dow

Re: [JAVA3D] PickTranslateBehavior in Z?

2001-03-02 Thread Eric Reiss
for help! > >=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". **

Re: [JAVA3D] Zooming with MOUSEZOOM/translation factor

2001-02-07 Thread Eric Reiss
;To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". **

Re: [JAVA3D] Switching ways on Mouse Behaviors

2001-01-31 Thread Eric Reiss
*** Eric Reiss Manager MEMS Lab Swanson New Product Incubator School of Engineering  - University of Pittsburgh 3700 O'Hara Street 647 Benedum Hall Pittsburgh, PA 15261 Phone: 412-624-9696 Email: [EMAIL PROTECTED] http://www.sigda.acm.org/Eric/ ***

Re: [JAVA3D] Using a toolbar to control mouse behaviours..

2001-01-29 Thread Eric Reiss
=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". **

Re: [JAVA3D] Behavior Problems!

2001-01-18 Thread Eric Reiss
TECTED] > >=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body

[JAVA3D] Fwd: Matrix and Quaternions FAQ

2001-01-15 Thread Eric Reiss
checked the math on either page but you might want to get in >touch with Andreas about editing the FAQ if you're sure it's in error. It >could help out a lot of people that use the FAQ as a reference. > >-Peter Yoo ***

Re: [JAVA3D] picking behavior

2001-01-15 Thread Eric Reiss
t; > body > > > of the message "signoff JAVA3D-INTEREST". For general help, send email >to > > > [EMAIL PROTECTED] and include in the body of the message "help". > > > > > > > >=

Re: [JAVA3D] a query

2001-01-13 Thread Eric Reiss
k for this unique identity and accordingly print the right info. > >Thanks so much for your valueable help. >Richie *** Eric Reiss Manager MEMS Lab Swanson New Product Incubator School of Engineering - University of Pittsbu

Re: [JAVA3D] a query

2001-01-12 Thread Eric Reiss
rmGroup tg) > { System.out.println("first method"); } > > public void transformClicked(int type, TransformGroup tg) > { System.out.println("second method"); } > > public void transformDoubleClicked(int type,TransformGroup tg) > {System.out.pr

Re: [JAVA3D] transformDoubleClicked class

2001-01-12 Thread Eric Reiss
ks when you add the behavior to the universe or whatever BranchGroup you are using. If you need any further help, or something explained more closely, don't hesitate to email me. At 03:17 PM 01/12/2001 +0100, you wrote: >Dear Mr. Eric Reiss, > >I went thru your very intrestin

Re: [JAVA3D] Good orbit behaviour?

2001-01-10 Thread Eric Reiss
REST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric Reiss Manager MEMS Lab Swanson New Product Incubator School of Engineering - University of Pittsburgh

Re: [JAVA3D] Rotating Objects about a point

2001-01-05 Thread Eric Reiss
The terminology rotate seems to always confuse people. If you rotate an object, or a group of objects, it should rotate the object around the upper most point in the hierarchy of the Transform group where you have the behavior acting upon. In your case if TG1 is at 0,0,0 and you rotate, then eve

Re: [JAVA3D] Mouse Behavior

2000-12-20 Thread Eric Reiss
n is how I can put MouseRotate in the left button and MouseTranslate in the right button.   Thanks.   PD Eric your behaviors are very good.Thanks *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Intern

Re: [JAVA3D] Mouse behaviors

2000-12-19 Thread Eric Reiss
;   obj.addChild(pickTranslate);   //pickTranslate.setupCallback(myPickingCallback);   Thanks   Silvia Villanueva [EMAIL PROTECTED] [EMAIL PROTECTED]     P.D If you can´t see my code ¿can you send my a project with the behaviors working?   Thanks. **

Re: [JAVA3D] ???? [JAVA3D] "better" PickRotateBehavior ????

2000-12-15 Thread Eric Reiss
rentVpT3D.set( viewPlatformT3D ); > > } > > >Any hints or any examples to do this will be appreciated. > >Thanks, > > >Bo > > > >- >myview technologies GmbH & Co. KG >Riemekestraße 160 ~

Re: [JAVA3D] "better" PickRotateBehavior

2000-12-14 Thread Eric Reiss
>To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "

Re: [JAVA3D] Transform3D with both rotation and translation

2000-12-13 Thread Eric Reiss
NTEREST". For general help, send > email to > > > [EMAIL PROTECTED] and include in the body of the message "help". > > > > > > > === > > To unsubscribe,

Re: [JAVA3D] Retrieving angle from Transform3D Object

2000-12-07 Thread Eric Reiss
Cyrille Breihof *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.acm.org/ Assistant Systems Manager - School of Engineering University of Pittsburgh ***

Re: [JAVA3D] Removing a Object during runtime....

2000-12-04 Thread Eric Reiss
>To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the

Re: [JAVA3D] PickTranslateBehavior

2000-12-01 Thread Eric Reiss
round. But neither of these seem very logical. Certainly, there must be a simpler solution.   Any ideas? Thanks, Miguel Branco *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager -

Re: [JAVA3D] MouseRotate to a fixed point problem

2000-10-10 Thread Eric Reiss
e in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric Reiss - http://www.sigda.acm.org/Eric

Re: [JAVA3D]

2000-10-04 Thread Eric Reiss
end email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric

Re: [JAVA3D] Setting the viewplatform

2000-09-29 Thread Eric Reiss
- >mailto:[EMAIL PROTECTED] > >=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to &g

Re: [JAVA3D] Fwd: Re: Fwd: Re: [JAVA3D] View Rotation

2000-09-27 Thread Eric Reiss
t;2. Is it a bug of java 3d that it hasn't provided any class similar to >MouseOrbit.? Can we get the same effect by using lookAt() method in >MouseRotate.? >3. Can i use ur java classes in my project? > >Thanx a lot. >Ashish > >Eric Reiss wrote: > > > I

Re: [JAVA3D] Fwd: Re: Fwd: Re: [JAVA3D] View Rotation

2000-09-26 Thread Eric Reiss
08:05 PM 09/26/2000 +0000, you wrote: >Eric Reiss: >I have modified your code. I hope the attached files don't get confused >since they have the same names. > >I believe what you wanted was the Orbit behavior, not the rotate. >You seem a little confused about the difference.

[JAVA3D] Fwd: Re: Fwd: Re: [JAVA3D] View Rotation

2000-09-26 Thread Eric Reiss
erent branches. Organization is key. And try to keep the post within the mailing list so others can benefit. >Date: Tue, 26 Sep 2000 11:15:52 -0700 >From: Ashish Tayal <[EMAIL PROTECTED]> >X-Mailer: Mozilla 4.7 [en] (WinNT; I) >X-Accept-Language: en >To: Eric Reiss <[EMAIL PROT

[JAVA3D] Orbiting behavior and my fixes to Sun's behaviors

2000-09-24 Thread Eric Reiss
behaviors including one to do Orbiting of a point in space. I apologize for how rough the "My Behaviors" topic is but I haven't even proofed it yet and I am not sure how coherent it is not to mention grammar and spelling. ********

Re: [JAVA3D] View Rotation

2000-09-22 Thread Eric Reiss
, send email to >[EMAIL PROTECTED] and include in the body of the message "help". > >=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-IN

Re: [JAVA3D] Box

2000-09-21 Thread Eric Reiss
MAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric Reiss -

Re: [JAVA3D] Screen resolution und Java3D

2000-09-18 Thread Eric Reiss
os from SUN and other >developer look as bad as this 3D models. >Can anybody tell me how to solve this problem? > >I use Windows NT Service Pack 6,ATI graphic card. >Any help is appreciated. >Olga *** Eric Reiss

Re: [JAVA3D] pickTranslateBehavior seems to broke on Java3d 1.2 release

2000-06-29 Thread Eric Reiss
> > > > -Original Message----- > > From: Discussion list for Java 3D API > > [mailto:[EMAIL PROTECTED]]On Behalf Of Eric Reiss > > Sent: Thursday, June 29, 2000 10:44 AM > > To: [EMAIL PROTECTED] > > Subject: Re: [JAVA3D] pickTranslateBehavior seems to

Re: [JAVA3D] pickTranslateBehavior seems to broke on Java3d 1.2 release

2000-06-29 Thread Eric Reiss
ification, the program no longer works - you >cannot pick individual object and move it. > >Attached the modification of PickTestGeometry.java file for >Java3d 1.2 release. I am running on NT4.0 with JDK1.2.2 release. > >Ching *******

[JAVA3D] Fwd: Re: [JAVA3D] PickMouseBehavior

2000-06-26 Thread Eric Reiss
the mouse behaviors to.  If you look at this line in the picking behavior and compare it to the one in the mouse behavior, you will see that the Bang ("!") symbols are in the same areas.  I hope this helps. Date: Mon, 26 Jun 2000 16:42:38 -0400 To: Ben Arbel <[EMAIL PROTECTED]>

Re: [JAVA3D] MouseRotate Behavior Bug?

2000-06-15 Thread Eric Reiss
l to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.acm.org/ Assistant S

[JAVA3D] Strange addChild problem

2000-06-10 Thread Eric Reiss
correctly since it works correctly using the group then simple object order. Is this a bug or am I missing something? *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - h

Re: [JAVA3D] Mouse / picking behaviors and arbitrary views

2000-05-15 Thread Eric Reiss
re >slower than when I am farther away. Also note that in the above routine I >am using a left handed elevation (thus the negation of the elevation value). >I hope this helps. > > >John P. Williams >[EMAIL PROTECTED] >Voice 850.314.6700 >Fax850.314.7508 > >

[JAVA3D] Mouse / picking behaviors and arbitrary views

2000-05-14 Thread Eric Reiss
ormed by vertical and horizontal components of the view. Likewise, the Zoom is just along the Z axis instead of along a path normal to the arbitrary view. Any help would be greatly appreciated. *** Eric Reiss - http://www.sigda.ac

Re: [JAVA3D] Delete objects of a Simple Universe

2000-04-03 Thread Eric Reiss
general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.

Re: [JAVA3D] behavior errors

2000-02-08 Thread Eric Reiss
MAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to >[EMAIL PROTECTED] and include in the body of the message "help". *** Eric Reis

[JAVA3D] Tool for picking Colors and Material

2000-02-04 Thread Eric Reiss
Does anyone know of a Java3D tool for picking Colors and Material? I used the attached file for doing it in VRML and I was wondering if there was something similar for J3D. color_toy.wrl *** Eric Reiss - http

Re: [JAVA3D] Picking

2000-01-25 Thread Eric Reiss
ECTED] and include in the body of the message "help". ******* Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.acm.org/ Assistant Sys

[JAVA3D] Fwd: Re: [JAVA3D] universe bounds

2000-01-24 Thread Eric Reiss
in the body of the message "help". > >=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JAVA3D-INTEREST". For general help, send email to &g

Re: [JAVA3D] Which key is the Meta key for mouse behaviors

2000-01-10 Thread Eric Reiss
LT key. >John > >-Original Message- >From: Eric Reiss [mailto:[EMAIL PROTECTED]] >Sent: January 9, 2000 1:25 AM >To: [EMAIL PROTECTED] >Subject: [JAVA3D] Which key is the Meta key for mouse behaviors > > >I have recently compiled my own versions of the mouse and

[JAVA3D] Which key is the Meta key for mouse behaviors

2000-01-08 Thread Eric Reiss
help. *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.acm.org/ Assistant Systems Manager - School of Engineering University of Pitts

Re: [JAVA3D] Where can get JAVA 3D API SOURCE CODE?

2000-01-02 Thread Eric Reiss
!!   Jiang *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.acm.org/ Assistant Systems Manager - School of Engineering University of Pittsburgh ***

Re: [JAVA3D] java3d-Books

1999-12-10 Thread Eric Reiss
d email to > > [EMAIL PROTECTED] and include in the body of the message "help". > > > >=== >To unsubscribe, send email to [EMAIL PROTECTED] and include in the body >of the message "signoff JA

[JAVA3D] geting rotation angles from transform3D

1999-12-03 Thread Eric Reiss
ith it now. *** Eric Reiss - http://www.sigda.acm.org/Eric/ Email: [EMAIL PROTECTED] SIGDA Internet Server Manager - http://www.sigda.acm.org/ Assistant Systems Manager - School of Engineering University of