MCPcopy Create free account
hub / github.com/MotrixLab/AiOS / show

Method show

detrsmpl/core/renderer/vedo_render.py:91–107  ·  view source on GitHub ↗

Show cameras as well as axis arrow by vedo.show() Args: with_axis (bool, optional): Whether to show the axis arrow. Defaults to True. interactive (bool, optional): Pause and interact with window (True) or continue execu

(self, with_axis=True, interactive=True)

Source from the content-addressed store, hash-verified

89 return vedo_list
90
91 def show(self, with_axis=True, interactive=True):
92 """Show cameras as well as axis arrow by vedo.show()
93
94 Args:
95 with_axis (bool, optional):
96 Whether to show the axis arrow. Defaults to True.
97 interactive (bool, optional):
98 Pause and interact with window (True) or
99 continue execution (False).
100 Defaults to True.
101 """
102 list_to_show = []
103 list_to_show += self.camera_list
104 if with_axis:
105 list_to_show += self.axis_list
106 vedo.show(*list_to_show, interactive=interactive, axes=1)
107 vedo.clear()

Callers 5

vis_3d_skeletonFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected