13 lines
312 B
Python
13 lines
312 B
Python
from __future__ import annotations
|
|
|
|
import rerun.blueprint as rrb
|
|
|
|
blueprint = rrb.Blueprint(
|
|
rrb.Spatial3DView(origin="/test1"),
|
|
rrb.TimePanel(state="collapsed"),
|
|
rrb.SelectionPanel(state="collapsed"),
|
|
rrb.BlueprintPanel(state="collapsed"),
|
|
)
|
|
|
|
blueprint.save("rerun_example_blueprint_test.rbl")
|