Skip to content

Commit

Permalink
Fix default joint limits
Browse files Browse the repository at this point in the history
Follow up to gazebosim/sdformat#1112

Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Aug 17, 2022
1 parent 01d2105 commit 9d8fafa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
)
import sdformat_mjcf.utils.sdf_utils as su

JOINT_DEFAULT_UPPER_LIMIT = 1e16
JOINT_DEFAULT_LOWER_LIMIT = -1e16
JOINT_DEFAULT_UPPER_LIMIT = math.inf
JOINT_DEFAULT_LOWER_LIMIT = -math.inf
JOINT_DEFAULT_DAMPING = 0.0
JOINT_DEFAULT_FRICTION = 0.0
JOINT_DEFAULT_SPRING_REFERENCE = 0.0
Expand Down

0 comments on commit 9d8fafa

Please sign in to comment.