forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
a new plan to move the object, still no collision avoidance
- Loading branch information
1 parent
db8f558
commit 7cd8fc8
Showing
3 changed files
with
51 additions
and
7 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,35 @@ | ||
<?xml version="1.0" ?> | ||
|
||
<robot name="block"> | ||
<material name="Blue"> | ||
<color rgba="0.2 0.2 0.9 1.0"/> | ||
</material> | ||
<material name="Green"> | ||
<color rgba="0.2 0.9 0.2 1.0"/> | ||
</material> | ||
<material name="Red"> | ||
<color rgba="0.9 0.2 0.2 1.0"/> | ||
</material> | ||
|
||
<link name="block"> | ||
<inertial> | ||
<mass value="1"/> | ||
<inertia ixx="0.1" ixy="0" ixz="0" iyy="0.1" iyz="0" izz="0.1"/> | ||
<origin xyz="0 0 0"/> | ||
</inertial> | ||
|
||
<visual> | ||
<geometry> | ||
<box size="0.1 0.1 0.1"/> | ||
</geometry> | ||
<material name="Blue"/> | ||
</visual> | ||
|
||
<collision> | ||
<geometry> | ||
<box size="0.1 0.1 0.1"/> | ||
</geometry> | ||
</collision> | ||
|
||
</link> | ||
</robot> |
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.