Re: [ros-users] tf and quaternions

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: User discussions
Date:  
To: ros-users
Subject: Re: [ros-users] tf and quaternions

Hey Armin,

Good advice.

So here is the final code:

    //original frame and quaternion
    tf::Quaternion quat = transform.getRotation();


    //compute roll pitch yaw using KDL
    double rx, ry, rz;
    btMatrix3x3(quat).getRPY(rx, ry, rz);
    //double yaw = tf::getYaw(quat);




it works fine but I still wonder where are getRPY and getYaw defined. I
can't seem to find them in the tf nor bullet (
http://www.continuousphysics.com/Bullet/BulletFull/index.html btMatrix3*3
or http://www.continuousphysics.com/Bullet/BulletFull/index.html
btQuaternion ) documentation. Any idea?


thanks for helping

Raph

--
View this message in context: http://ros-users.122217.n3.nabble.com/tf-and-quaternions-tp2206128p2234316.html
Sent from the ROS-Users mailing list archive at Nabble.com.