[fix] update comment to reference the correct dt variable

This commit is contained in:
Austin Gregg-Smith
2024-05-23 13:56:52 +01:00
committed by GitHub
parent 3bfed9d773
commit 03577c7b3f

View File

@@ -134,7 +134,7 @@ def demo_motion_gen_simple():
) )
result = motion_gen.plan_single(start_state, goal_pose, MotionGenPlanConfig(max_attempts=1)) result = motion_gen.plan_single(start_state, goal_pose, MotionGenPlanConfig(max_attempts=1))
traj = result.get_interpolated_plan() # result.optimized_dt has the dt between timesteps traj = result.get_interpolated_plan() # result.interpolation_dt has the dt between timesteps
print("Trajectory Generated: ", result.success) print("Trajectory Generated: ", result.success)