Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate box model for baxter benchmark to this package. #55

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions srdf/baxter_benchmark/box.srdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<robot name="box">
<handle name="handle" clearance="0.025">
<position> 0 0 0 1 0 0 0 </position>
<link name="base_link"/>
</handle>
<handle name="handle2" clearance="0.025">
<position> 0 0 0
0 0 0.7071067811865476 0.7071067811865476 </position>
<link name="base_link"/>
</handle>
<contact name="box_surface">
<link name="base_link"/>
<point>-0.015 -0.015 -0.015 -0.015 0.015 -0.015 -0.015 -0.015 0.015 -0.015 0.015 0.015
+0.015 -0.015 -0.015 +0.015 0.015 -0.015 +0.015 -0.015 0.015 +0.015 0.015 0.015 </point>
<shape> 4 0 2 3 1 4 4 5 7 6</shape>
</contact>
</robot>
26 changes: 26 additions & 0 deletions urdf/baxter_benchmark/box.urdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<robot name="box">
<link name="base_link">
<inertial>
<origin xyz="0.0 0.0 0.0" rpy="0 0 0" />
<mass value="0.6"/>
<inertia ixx="0.001" ixy="0.0" ixz="0.0"
iyy="0.001" iyz="0.0"
izz="0.001" />
</inertial>
<visual>
<origin xyz="0 0 0" rpy="0 0 0" />
<geometry>
<box size="0.03 0.03 0.03"/>
</geometry>
<material name="white">
<color rgba="1 1 1 1"/>
</material>
</visual>
<collision>
<origin xyz="0 0 0" rpy="0 0 0" />
<geometry>
<box size="0.03 0.03 0.03"/>
</geometry>
</collision>
</link>
</robot>
Loading