Skip to content

Commit

Permalink
Fix origin in macro and set some damping
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Aug 11, 2023
1 parent 4179dd6 commit 4e39ac5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<geometry>
<box size="${width} ${width} ${height}"/>
</geometry>
<origin xyz="0 0 ${height/2}"/>
<origin xyz="0 0 0"/>
</collision>
<visual>
<geometry>
Expand Down Expand Up @@ -68,11 +68,11 @@

<joint name="cart_to_pendulum" type="revolute">
<axis xyz="0 1 0"/>
<origin xyz="0.0 0.35 0.0" rpy="0 0 0"/>
<origin xyz="0.0 0.35 0.0" rpy="0 0.1 0"/>
<parent link="cart"/>
<child link="pendulum"/>
<limit effort="10000.0" lower="-100000" upper="100000" velocity="100000"/>
<dynamics damping="0.0" friction="0.0"/>
<dynamics damping="0.1" friction="0.0"/>
</joint>

<ros2_control name="GazeboSystem" type="system">
Expand Down

0 comments on commit 4e39ac5

Please sign in to comment.