This repository has been archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Advertise shininess to renderer Signed-off-by: William Lew <WilliamMilesLew@gmail.com> * Updated comments Signed-off-by: William Lew <WilliamMilesLew@gmail.com> * Added codee suggestions Signed-off-by: William Lew <WilliamMilesLew@gmail.com> * Added codee suggestions Signed-off-by: William Lew <WilliamMilesLew@gmail.com> * Require sdformat9 9.8 Signed-off-by: William Lew <WilliamMilesLew@gmail.com> * Added code suggestions Signed-off-by: William Lew <WilliamMilesLew@gmail.com>
- Loading branch information
1 parent
2f0f7af
commit f6d2b94
Showing
8 changed files
with
176 additions
and
1 deletion.
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,82 @@ | ||
<?xml version="1.0" ?> | ||
<sdf version="1.5"> | ||
<world name="default"> | ||
<include> | ||
<uri>model://ground_plane</uri> | ||
</include> | ||
<include> | ||
<uri>model://sun</uri> | ||
</include> | ||
<model name="box"> | ||
<pose>0 0 0.5 0 0 0</pose> | ||
<link name="link"> | ||
<collision name="collision"> | ||
<geometry> | ||
<box> | ||
<size>1 1 1</size> | ||
</box> | ||
</geometry> | ||
</collision> | ||
<visual name="visual"> | ||
<material> | ||
<specular>1 0 0 1</specular> | ||
<shininess>1</shininess> | ||
</material> | ||
<geometry> | ||
<box> | ||
<size>1 1 1</size> | ||
</box> | ||
</geometry> | ||
</visual> | ||
</link> | ||
</model> | ||
<model name="sphere"> | ||
<pose>0 1.5 0.5 0 0 0</pose> | ||
<link name="link"> | ||
<collision name="collision"> | ||
<geometry> | ||
<sphere> | ||
<radius>0.5</radius> | ||
</sphere> | ||
</geometry> | ||
</collision> | ||
<visual name="visual"> | ||
<material> | ||
<specular>0 1 0 1</specular> | ||
<shininess>5</shininess> | ||
</material> | ||
<geometry> | ||
<sphere> | ||
<radius>0.5</radius> | ||
</sphere> | ||
</geometry> | ||
</visual> | ||
</link> | ||
</model> | ||
<model name="cylinder"> | ||
<pose>0 -1.5 0.5 0 1.5707 0</pose> | ||
<link name="link"> | ||
<collision name="collision"> | ||
<geometry> | ||
<cylinder> | ||
<radius>0.5</radius> | ||
<length>1.0</length> | ||
</cylinder> | ||
</geometry> | ||
</collision> | ||
<visual name="visual"> | ||
<material> | ||
<specular>0 0 1 1</specular> | ||
<shininess>10</shininess> | ||
</material> | ||
<geometry> | ||
<cylinder> | ||
<radius>0.5</radius> | ||
<length>1.0</length> | ||
</cylinder> | ||
</geometry> | ||
</visual> | ||
</link> | ||
</model> | ||
</world> | ||
</sdf> |