Show objects without blocking.
(
*args: Showable | vtkProp3D | list[vtkProp3D], name: Optional[str] = None, **kwargs
)
| 495 | |
| 496 | |
| 497 | def show( |
| 498 | *args: Showable | vtkProp3D | list[vtkProp3D], name: Optional[str] = None, **kwargs |
| 499 | ): |
| 500 | """ |
| 501 | Show objects without blocking. |
| 502 | """ |
| 503 | |
| 504 | fig = Figure() |
| 505 | fig.show(*args, name=name, **kwargs) |
| 506 | |
| 507 | |
| 508 | def clear(*args: Shape | vtkProp3D, **kwargs): |