Skip to content

Commit

Permalink
Also change k_epsilon in Python
Browse files Browse the repository at this point in the history
  • Loading branch information
TheComputer314 committed Dec 31, 2024
1 parent ad8911e commit 7e981c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pathplannerlib-python/pathplannerlib/util/swerve.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SwerveSetpointGenerator:
kinematic constraints on module rotation and wheel velocity/torque, as well as preventing any
forces acting on a module's wheel from exceeding the force of friction.
"""
_k_epsilon = 1e-8
_k_epsilon = 1e-6

def __init__(self, config: RobotConfig, max_steer_velocity_rads_per_sec: float) -> None:
"""
Expand Down

0 comments on commit 7e981c3

Please sign in to comment.