(args: argparse.Namespace, background_cls: Any)
| 829 | |
| 830 | |
| 831 | def _resolve_background(args: argparse.Namespace, background_cls: Any) -> Any: |
| 832 | return background_cls( |
| 833 | scene_id=_resolve_background_scene_id(args), |
| 834 | material_id=args.background_material_id, |
| 835 | layout_id=args.background_layout_id, |
| 836 | registry_path=str(args.background_registry.expanduser().resolve()), |
| 837 | prim_path=str(args.background_prim_path), |
| 838 | ) |
| 839 | |
| 840 | |
| 841 | def _resolve_background_scene_id(args: argparse.Namespace) -> str: |
no test coverage detected