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)
| 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() |
no test coverage detected