We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello! What's the correct use of tags obstacles and grid? I've read the README file, but there are things that I don't quite understand
About the tag grid: if a cell is marked by a number different than 0, the expected behaviour would be that an agent can never be in that cell?
About the tag obstacle: can agents go through obstacles?
It's there a functional difference between marking a cell as untraversable cell, and defining a square-shaped obstacle that occupies the same cell?
Also, if a cell is marked as untraversable, should it have obstacles surround it? for example:
<map> <width>2</width> <height>2</height> <cellsize>1</cellsize> <grid> <row>0 0</row> <row>1 1</row> </grid> </map>
Should the obstacles look like this?
<obstacles number="1" > <obstacle> <vertex xr="0" yr="0"/> <vertex xr="2" yr="0"/> <vertex xr="2" yr="1"/> <vertex xr="0" yr="1"/> </obstacle> </obstacles>
<obstacles number="2" > <obstacle> <vertex xr="0" yr="0"/> <vertex xr="1" yr="0"/> <vertex xr="1" yr="1"/> <vertex xr="1" yr="0"/> </obstacle> <obstacle> <vertex xr="1" yr="0"/> <vertex xr="2" yr="0"/> <vertex xr="2" yr="1"/> <vertex xr="1" yr="1"/> </obstacle> </obstacles>
Thank you very much for your time. Best regards
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello! What's the correct use of tags obstacles and grid? I've read the README file, but there are things that I don't quite understand
About the tag grid: if a cell is marked by a number different than 0, the expected behaviour would be that an agent can never be in that cell?
About the tag obstacle: can agents go through obstacles?
It's there a functional difference between marking a cell as untraversable cell, and defining a square-shaped obstacle that occupies the same cell?
Also, if a cell is marked as untraversable, should it have obstacles surround it?
for example:
Should the obstacles look like this?
Thank you very much for your time. Best regards
The text was updated successfully, but these errors were encountered: