Linear cartesian path planning #336
-
Hi developers! I have one question: is it possible to build a plan where the TCP/end-effector follows a linear trajectory? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Nominally yes. Trajopt can accept joint waypoints or Cartesian waypoints, and it represents movement between these waypoints in joint space (i.e. a joint-interpolated arc, rather than a straight linear line). However, if your waypoints are spaced closely enough together and are on your linear trajectory, the joint-interpolated arc between waypoints approximates a line. If you're using
|
Beta Was this translation helpful? Give feedback.
Nominally yes. Trajopt can accept joint waypoints or Cartesian waypoints, and it represents movement between these waypoints in joint space (i.e. a joint-interpolated arc, rather than a straight linear line). However, if your waypoints are spaced closely enough together and are on your linear trajectory, the joint-interpolated arc between waypoints approximates a line.
If you're using
trajopt
throughtesseract
, you can denote theMoveInstructions
of your motion planning input asLINEAR
moves; then theSimplePlanner
(which generates a seed trajectory for Trajopt) will do linear interpolation between those waypoints at some specifiable density to approximate a line. Then Trajopt will optimi…