Skip to content

Commit

Permalink
robot_trajectory: Clarify meaning of dt with comments (moveit#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
davetcoleman authored and v4hn committed Oct 20, 2016
1 parent 0a7a895 commit ba95291
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ class RobotTrajectory
duration_from_previous_.insert(duration_from_previous_.begin() + index, dt);
}

/**
* \brief Add a trajectory to the end of the current trajectory
* \param source - the trajectory to append to the end of current trajectory
* \param dt - time step between last traj point in current traj, and first traj point of new traj
*/
void append(const RobotTrajectory &source, double dt);

void swap(robot_trajectory::RobotTrajectory &other);
Expand Down

0 comments on commit ba95291

Please sign in to comment.