Skip to content

Commit

Permalink
Add a default component to the blueprint example
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Jun 12, 2024
1 parent 49d6ea7 commit 5079e17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/python/blueprint/blueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ def main() -> None:
blueprint = Blueprint(
Grid(
Spatial2DView(name="Rect 0", origin="/", contents=["image", "rect/0"]),
Spatial2DView(name="Rect 1", origin="/", contents=["image", "rect/1"]),
Spatial2DView(
name="Rect 1", origin="/", contents=["image", "rect/1"], defaults=[rr.components.Radius(2)]
),
),
BlueprintPanel(state="collapsed"),
SelectionPanel(state="collapsed"),
Expand Down

0 comments on commit 5079e17

Please sign in to comment.