Re: [JAVA3D] PickingCallback interface

2000-01-10 Thread Sánchez Sanz, Javier
0:33 > To: [EMAIL PROTECTED] > Subject: Re: [JAVA3D] PickingCallback interface > > > Hi Javier, > The method transformChanged(int type, TransformGroup t) could > return a null in the t > paremeter. > The transformGroup is the object taht PickRotateBehavior > mod

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

[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