-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an empty visual box to all virtual links
See #19 (comment) Fixes #20
- Loading branch information
1 parent
760810d
commit bf84be6
Showing
9 changed files
with
125 additions
and
71 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- SPDX-License-Identifier: Apache-2.0 --> | ||
<robot name="utils" xmlns:xacro="http://ros.org/wiki/xacro"> | ||
<xacro:macro name="virtual_link" params="name"> | ||
<link name="${name}"> | ||
<!-- virtual link: https://github.com/upkie/upkie_description/wiki/Model-conventions#virtual-links --> | ||
<visual> | ||
<geometry> | ||
<box size="0 0 0" /> | ||
</geometry> | ||
</visual> | ||
<inertial> | ||
<mass value="0.001" /> | ||
<origin rpy="0 0 0" xyz="0 0 0" /> | ||
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0" /> | ||
</inertial> | ||
</link> | ||
</xacro:macro> | ||
</robot> |
This file was deleted.
Oops, something went wrong.