How to create a slope/ramp in Gazebo editor
Hello,
Is it possible to create a ramp in the Gazebo editor?
BR
add a comment
Hello,
Is it possible to create a ramp in the Gazebo editor?
BR
The easiest way is to create a box in SDF, and give it an angle. For example:
<?xml version="1.0" ?>
<sdf version="1.4">
<world name="default">
<include>
<uri>model://ground_plane</uri>
</include>
<include>
<uri>model://sun</uri>
</include>
<model name="box">
<static>true</static>
<pose>0 0 0.2 0 0.4 0</pose>
<link name="link">
<collision name="collision">
<geometry>
<box>
<size>1 0.5 .1</size>
</box>
</geometry>
</collision>
<visual name="visual">
<geometry>
<box>
<size>1 0.5 .1</size>
</box>
</geometry>
</visual>
</link>
</model>
</world>
</sdf>
Asked: 2014-03-26 09:34:55 -0600
Seen: 7,610 times
Last updated: Mar 26 '14
Skateboard ramp in Gazebo editor
Edit link and joint names in the editor
"Getting remote endpoint failed." on OSX
collada files not visualized in Gazebo 1.9
Collada version problem when spawning model
Contact positions wrt world frame
Real Time Factor going down after insertion of a "simple" test room
How do you rotate the camera view around a model
Is possible to use Coreographe for programing in Gazebo to NAO?