ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

rubick's profile - activity

2017-03-03 23:40:33 -0500 received badge  Famous Question (source)
2016-02-04 10:01:27 -0500 received badge  Notable Question (source)
2016-01-24 15:58:39 -0500 received badge  Famous Question (source)
2016-01-24 15:58:39 -0500 received badge  Notable Question (source)
2015-07-27 16:06:58 -0500 received badge  Popular Question (source)
2015-07-26 21:40:34 -0500 asked a question calc new pose according to twist

Is there any library to do this? input geometry_msgs::Pose and geometry_msgs::Twist, output new geometry_msgs::Pose.

I found tf::addDelta(), but it's a little bit different: /// Starting from a Pose from A to B, apply a Twist with reference frame A and reference point B, during a time t. geometry_msgs::Pose addDelta(const geometry_msgs::Pose &pose, const geometry_msgs::Twist &twist, const double &t) __attribute__((deprecated)); and it's deprecated.

so is there any other library to calc new pose according to twist?

2015-07-26 21:40:09 -0500 asked a question calc new pose according to twist

Is there any library to do this? input geometry_msgs::Pose and geometry_msgs::Twist, output new geometry_msgs::Pose.

I found tf::addDelta(), but it's a little bit different: /// Starting from a Pose from A to B, apply a Twist with reference frame A and reference point B, during a time t. geometry_msgs::Pose addDelta(const geometry_msgs::Pose &pose, const geometry_msgs::Twist &twist, const double &t) __attribute__((deprecated)); and it's deprecated.

so is there any other library to calc new pose according to twist?

2014-11-24 23:55:49 -0500 commented question does ROS_INFO support utf8 string?

any body know about it ?

2014-11-23 20:01:06 -0500 received badge  Popular Question (source)
2014-11-13 06:32:01 -0500 received badge  Student (source)
2014-11-13 01:48:45 -0500 asked a question does ROS_INFO support utf8 string?

I'm Chinese. So I want to print some Chinese info, like:

ROS_INFO ("调试信息");

but all I got is:

[ INFO] [1415863087.967254365]: ????????????

(by the way, printf goes well)

I save the cpp source file in utf8 format.

so, does ROS_INFO support utf8 string ?

thanks!

2014-11-13 01:48:45 -0500 asked a question ROS_INFO utf-8 string

I'm chinese, I want to print some chinese info,like: ROS_INFO ("调试信息"); but i got: I save the cpp source file by utf-8 fomat so, does ROS support utf-8 log message?