-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from clearpathrobotics/rkreinin/mounts
Disk and Post mounts
- Loading branch information
Showing
13 changed files
with
400 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
22 changes: 11 additions & 11 deletions
22
...tion/urdf/novatel_smart7_stand.urdf.xacro → ...h_mounts_description/urdf/disk.urdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
<xacro:macro name="novatel_smart7_stand" params="name parent_link height:=0.145 *origin"> | ||
<robot xmlns:xacro="http://wiki.ros.org/xacro"> | ||
<xacro:macro name="disk" params="name parent_link *origin"> | ||
<link name="${name}_link"> | ||
<visual> | ||
<origin xyz="0 0 ${height/2}" rpy="0 0 0"/> | ||
<material name="dark_grey"/> | ||
<geometry> | ||
<box size="0.045 0.025 ${height}" /> | ||
<mesh filename="package://clearpath_mounts_description/meshes/disk.stl" /> | ||
</geometry> | ||
<material name="black" /> | ||
<origin xyz="0 0 0" rpy="0 0 0" /> | ||
</visual> | ||
<collision> | ||
<origin xyz="0 0 ${height/2}" rpy="0 0 0"/> | ||
<geometry> | ||
<box size="0.045 0.025 ${height}" /> | ||
<box size="0.104 0.142 0.006" /> | ||
</geometry> | ||
<origin xyz="0 0 0.003" rpy="0 0 0" /> | ||
</collision> | ||
</link> | ||
|
||
<link name="${name}_mount"/> | ||
<link name="${name}_mount" /> | ||
|
||
<joint name="${name}_joint" type="fixed"> | ||
<xacro:insert_block name="origin" /> | ||
<parent link="${parent_link}" /> | ||
<child link="${name}_link" /> | ||
<xacro:insert_block name="origin" /> | ||
</joint> | ||
|
||
<joint name="${name}_mount_joint" type="fixed"> | ||
<origin xyz="0 0 ${height}" /> | ||
<parent link="${name}_link" /> | ||
<child link="${name}_mount" /> | ||
<origin xyz="0 0 0.006" rpy="0 0 0" /> | ||
</joint> | ||
</xacro:macro> | ||
</robot> | ||
</robot> |
104 changes: 0 additions & 104 deletions
104
clearpath_mounts_description/urdf/pacs/quad_post.urdf.xacro
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.