diff --git a/examples/python/nuscenes_dataset/nuscenes_dataset/__main__.py b/examples/python/nuscenes_dataset/nuscenes_dataset/__main__.py index 15f3b62dec30..ea0befd92c61 100755 --- a/examples/python/nuscenes_dataset/nuscenes_dataset/__main__.py +++ b/examples/python/nuscenes_dataset/nuscenes_dataset/__main__.py @@ -274,7 +274,14 @@ def main() -> None: ] blueprint = rrb.Vertical( rrb.Horizontal( - rrb.Spatial3DView(name="3D", origin="world"), + rrb.Spatial3DView( + name="3D", + origin="world", + # Default for `ImagePlaneDistance` so that the pinhole frustum visualizations don't take up too much space. + defaults=[rr.components.ImagePlaneDistance(4.0)], + # Transform arrows for the vehicle shouldn't be too long. + overrides={"world/ego_vehicle": [rr.components.AxisLength(5.0)]}, + ), rrb.TextDocumentView(origin="description", name="Description"), column_shares=[3, 1], ),