Input arguments for tf::Vector3() tf::Quaternion()
I would like to know the kind of input arguments passed both in the tf::Vector3() tf::Quaternion() as in the code below:
tf::Transform xform;
xform.setOrigin(tf::Vector3(pose3D_LDD.pose.position.x, pose3D_LDD.pose.position.y, pose3D_LDD.pose.position.z));
xform.setRotation(tf::Quaternion(pose3D_LDD.pose.orientation.x, pose3D_LDD.pose.orientation.y, pose3D_LDD.pose.orientation.z, pose3D_LDD.pose.orientation.w));
Specifically, I want to know, are they absolute or relative? By the way, those all those lines reside in a callback function. For a more detail version of the code snippet of it, kindly refer to the code snippet here.
I know that tf::Vector3() tf::Quaternion() refer to translation and rotation respectively but, should they be passed as absolute or relative in this regard?
Thanks in advance.