Understanding trajectory_msgs/JointTrajectory
Hi All
In working with the JointTrajectory message, I'm a bit unsure as to how the data should be filled.
If we have an arm with 7 joints, and a trajectory for those joints that has 100 points should the JointTrajectory message sizes be as follows:
joint_names -- size = 700
points -- size =700
if so, then should the arrays in JointTrajectoryPoints be all uniary?
Else should the sizes be:
joint_names -- size = 7
points -- size =7
and the position, velocity and acceleration arrays all be 100 in size. But if this is so, then time_from_start should also have 100 points. instead its just a single value
I know this can be a simple question but I'd appreciate some clarification.
cheers
Peter