Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - gonso

Pages: [1]
1
Support / Getting Angles back
« on: December 21, 2008, 08:25:05 pm »
Hello,

After using the code:

obj.rotateY((float) Math.PI/2f);

How could I get the angle to Y axis back? I mean, is there something simillar to

float beta=obj.getYangle();

?


Obviously getting beta=PI/2 as the result in this case assuming that originally beta was 0.

Thanks.

2
Support / Re: Angle Alignment
« on: December 21, 2008, 07:07:04 pm »
Yep, but the solution you gave me was using JPCT's lookAt function, and works , from that perspective my question would be:

If LookAt method is working (it does) the question is:

------------------------------------------------------------------------------------------------------------------------------------------
Basically there is a accessor method for an object's position (getPosition or getTransformedCenter) but no getAngles/getTransformedAngles...
How are object angles obtained after the rotation?

-------------------------------------------------------------------------------------------------------------------------------------------

Once lookAt method has been called , how could I get the resulting angles back? How are the local angles (relative to the object's central axis) obtained now?

From your code:
public void align( Object3D object, SimpleVector position, SimpleVector target )
{
    SimpleVector translation = position.calcSub( obj.getTransformedCenter() );

    // Store current position and angles:
    oldposition=object.getPosition();
    oldangle=object.getLocalAngles(); <==========   

    object.translate( translation );
    lookAt( object, target );

    position=object.getPosition();
    angle=object.getLocalAngles();  <================ HOW IS THIS DONE????
}

I also tried with the acos approach and atan2 approach and had the same problems that you had.

Thanks for your quick reply :).






3
Support / Angle Alignment
« on: December 20, 2008, 08:36:54 pm »
Good afternoon,

My approach is the common one, bring the objects to the origin, unrotate them in ZYX order, rotate in XYZ order and place them in their new position. Everything working fine.  I need to code a function:

public void align(Object3D obj, SimpleVector position, SimpleVector angles) and/or
public void align(Object3D obj, SimpleVector v1, SimpleVector v2)

That puts the object in the position and angles given (first version) or puts the object in v1 and facing the direction
of the vector that goes from v1 to v2.

and, finally:

 public void lookAt(Object3D obj,SimpleVector point)

That rotates the object whose coordinates are wx,wy,wz and angles ax,ay,az so that it looks at the point. I have seen that there is an Align function for Object3D already, but, probably due to being a newbee, I am unable to obtain the local angles of an object once it has been rotated, just to store them for route logging, for example. Getting the position back is easy, the angles are not żAny idea?

In 2D this seems to be easy, just using atan2... but in 3D it is resulting hard for me. I would l ike to implement it with
moveTo, and Rotate or RotateX, RotateY RotateZ operands, avoiding low level matrix manipulation as the transformations are centered in a function that is automatically called before rendering, it is name update(Object3D ..). The current positions and angles of the object are stored for simplicity and named wx,wy,wz  and ax,ay,az for angles. There is a copy of the last know position and angles in owx,owy,owz and oax,oay,oaz (o stands for 'old')

Have read about angle - axis solution but my implementation is failing. Are quaternions the answer? Any help would be really appreciated.

Thanks in advance,
 Ramon Talavera 

Pages: [1]