Last active
June 23, 2016 09:59
-
-
Save qh-huang/bce1d37de0879821dec41767a675a79c to your computer and use it in GitHub Desktop.
Playing with Robotic Programming
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Eigen::Quaternion<float> q; | |
Eigen::AngleAxis<float> aaZ(pcl::deg2rad(rz), Eigen::Vector3f::UnitZ()); | |
Eigen::AngleAxis<float> aaY(pcl::deg2rad(ry), Eigen::Vector3f::UnitY()); | |
Eigen::AngleAxis<float> aaX(pcl::deg2rad(rx), Eigen::Vector3f::UnitX()); | |
q = aaZ * aaY * aaX; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment