MCPcopy Index your code
hub / github.com/CadQuery/cadquery / show

Function show

cadquery/fig.py:497–505  ·  view source on GitHub ↗

Show objects without blocking.

(
    *args: Showable | vtkProp3D | list[vtkProp3D], name: Optional[str] = None, **kwargs
)

Source from the content-addressed store, hash-verified

495
496
497def 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
508def clear(*args: Shape | vtkProp3D, **kwargs):

Callers 1

test_fig_free_funcFunction · 0.90

Calls 2

showMethod · 0.95
FigureClass · 0.85

Tested by 1

test_fig_free_funcFunction · 0.72