We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in industrial_robot_simulator package the pyhon file
def accelerate(self, last_pt, current_pt, current_time, delta_time): intermediate_pt = JointTrajectoryPoint() #rospy.logerr("debug : enter accelerate() in industrial_robot_simulator") for last_joint, current_joint, last_vel, current_vel in zip(last_pt.positions, current_pt.positions, last_pt.velocities, current_pt.velocities): delta_x = current_joint-last_joint dv = current_vel+last_vel
is "dv = current_vel+last_vel " should be modified to "dv = current_vel - last_vel"
The text was updated successfully, but these errors were encountered:
From a quick look it looks like you could be right.
Could you submit a PR?
Sorry, something went wrong.
but the result about "delta_x = current_joint+last_joint" is better than "delta_x = current_joint-last_joint" may be your raw code is right
No branches or pull requests
in industrial_robot_simulator package the pyhon file
is "dv = current_vel+last_vel " should be modified to "dv = current_vel - last_vel"
The text was updated successfully, but these errors were encountered: