-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the new customer stand for a bimanual system (#253)
* adding customer scenes for new stand (#252) * adding customer scenes * Delete customer_world_bimanual.scene * Adding bimanual stand * Adding bimanual stand * Fixing bimanual stand * Fixing bimanual stand * Adding scene --------- Co-authored-by: Georgia Blanco-Litchfield <[email protected]>
- Loading branch information
1 parent
8295265
commit 9af346e
Showing
4 changed files
with
56 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
|
||
<model> | ||
<name>bimanual_stand</name> | ||
<version>1.0</version> | ||
<sdf version="1.5">model.sdf</sdf> | ||
|
||
<author> | ||
<name>Georgia Blanco-Litchfield</name> | ||
<email>[email protected]</email> | ||
</author> | ||
|
||
<description> | ||
A simple box emulating the bimanual stands for RViz. This include the two stands and the table between them. | ||
</description> | ||
</model> |
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,34 @@ | ||
<?xml version='1.0'?> | ||
<sdf version="1.4"> | ||
<model name="bimanual_stand"> | ||
<static>true</static> | ||
<link name="link"> | ||
<inertial> | ||
<mass>1.0</mass> | ||
<inertia> | ||
<!-- http://answers.gazebosim.org/question/4372/the-inertia-matrix-explained/ --> | ||
<ixx>0.4779</ixx> | ||
<ixy>0.0</ixy> | ||
<ixz>0.0</ixz> | ||
<iyy>0.1029</iyy> | ||
<iyz>0.0</iyz> | ||
<izz>0.4687</izz> | ||
</inertia> | ||
</inertial> | ||
<collision name="collision"> | ||
<geometry> | ||
<box> | ||
<size>0.75 2.25 0.82</size> | ||
</box> | ||
</geometry> | ||
</collision> | ||
<visual name="visual"> | ||
<geometry> | ||
<box> | ||
<size>0.75 2.25 0.82</size> | ||
</box> | ||
</geometry> | ||
</visual> | ||
</link> | ||
</model> | ||
</sdf> |
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