Fix mistake in bounding boxes docs

This commit is contained in:
PabloVD 2024-12-11 11:19:02 +01:00 committed by Blyron
parent 311cb71a4e
commit 17abfd9c45
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ CARLA objects all have an associated bounding box. CARLA [actors](python_api.md#
It is important to note that to get the 3D coordinates of the bounding box in world coordinates, you need to include the transform of the actor as an argument to the `get_world_vertices()` method like so:
```py
actor.get_world_vertices(actor.get_transform())
bounding_box.get_world_vertices(actor.get_transform())
```