Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
pathEndTimeoutConstraint is in milliseconds, not seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
AnyiLin committed Sep 6, 2024
1 parent cfc6964 commit 2d8df47
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class Path {
private double pathEndTValueConstraint = FollowerConstants.pathEndTValueConstraint;

// When the Path is considered at its end parametrically, then the Follower has this many
// seconds to further correct by default.
// milliseconds to further correct by default.
// This can be custom set for each Path.
private double pathEndTimeoutConstraint = FollowerConstants.pathEndTimeoutConstraint;

Expand Down Expand Up @@ -402,7 +402,7 @@ public void setPathEndTValueConstraint(double set) {

/**
* This sets the Path end timeout. If the Path is at its end parametrically, then the Follower
* has this many seconds to correct before the Path gets ended anyways.
* has this many milliseconds to correct before the Path gets ended anyways.
*
* @param set This sets the Path end timeout.
*/
Expand Down

0 comments on commit 2d8df47

Please sign in to comment.