Skip to content

Commit 584bb3c

Browse files
committed
Add the static 2f-85 model and corresponding macro
1 parent 3a1dbd8 commit 584bb3c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0"?>
2+
<robot xmlns:xacro="http://wiki.ros.org/xacro">
3+
<xacro:macro name="robotiq_2f_85_static" params="parent prefix *origin">
4+
<link name="${prefix}_base_link">
5+
<visual>
6+
<geometry>
7+
<mesh filename="package://robotiq_2f_85_gripper_visualization/meshes/robotiq_2f_85.stl" />
8+
</geometry>
9+
<origin xyz="0 0 0" rpy="1.5708 0 0" />
10+
<material name="black" />
11+
</visual>
12+
<collision>
13+
<geometry>
14+
<mesh filename="package://robotiq_2f_85_gripper_visualization/meshes/robotiq_2f_85.stl" />
15+
</geometry>
16+
<origin xyz="0 0 0" rpy="1.5708 0 0" />
17+
</collision>
18+
</link>
19+
20+
<joint name="${prefix}_base_joint" type="fixed">
21+
<parent link="${parent}" />
22+
<child link="${prefix}_base_link" />
23+
<xacro:insert_block name="origin" />
24+
</joint>
25+
</xacro:macro>
26+
</robot>

0 commit comments

Comments
 (0)