Skip to content

Update building_robot.md #593

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions fortress/building_robot.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Building your own robot

In this tutorial we will learn how to build our own robot in SDFormat. We will build a simple two wheeled robot.
In this tutorial we will learn how to build our own robot in SDFormat. We will build a simple two wheeled robot.

You can find the finished SDF file for the tutorial [here](https://github.com/ignitionrobotics/docs/blob/master/fortress/tutorials/building_robot/building_robot.sdf).

Expand Down Expand Up @@ -114,7 +114,10 @@ Every model is a group of `links` (can be just one link) connected together with
<pose relative_to='__model__'>0.5 0 0.4 0 0 0</pose>
```

We define the first link, the `chassis` of our car and it's pose relative to the `model`.
We define the first link, the `chassis` of our car and it's pose relative to the `model`. Understanding the relationship between tags like <world>, <model>, <link>, <sensor>, and others is crucial for anyone working with robot simulations. Following diagram is aimed at helping developers and researchers ensure proper nesting and usage of elements while building simulation environments.

![image](https://github.com/user-attachments/assets/4c3d096e-6d89-47e5-ba5e-38dfe3e2a510)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where is this image located? you should place the image in fortress/img and then use the right relative path



#### Inertial properties

Expand Down