From 253dd6973c99310f41c7a43e418d9138bcca9eea Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Wed, 31 Jul 2024 15:31:20 +0200 Subject: [PATCH] readme too --- examples/python/nuscenes_dataset/README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/examples/python/nuscenes_dataset/README.md b/examples/python/nuscenes_dataset/README.md index 0cc297cd861d..943a9ae7bed9 100644 --- a/examples/python/nuscenes_dataset/README.md +++ b/examples/python/nuscenes_dataset/README.md @@ -105,7 +105,16 @@ rr.log(f"world/ego_vehicle/{sensor_name}", rr.Points3D(points, colors=point_colo Annotations are logged as [`Boxes3D`](https://www.rerun.io/docs/reference/types/archetypes/boxes3d), containing details such as object positions, sizes, and rotation. ```python -rr.log("world/anns", rr.Boxes3D(sizes=sizes, centers=centers, rotations=rotations, class_ids=class_ids)) +rr.log( + "world/anns", + rr.Boxes3D( + sizes=sizes, + centers=centers, + rotations=rotations, + class_ids=class_ids, + fill_mode=rr.components.FillMode.Solid, + ), +) ``` ### Setting up the default blueprint