v3d.auto_plot_figs#

visu3d.auto_plot_figs() None[source]#

Auto-display tuple[Visualizable, …] as figure.

After this function is called, tuple of v3d.Visualizable objects are displayed directly as if they were passed to v3d.make_fig.

>>> rays, cams, points

Is an alias for

>>> v3d.make_fig([rays, cams, points])

It uses a simple heuristic (only check is the first element is visualizable). Other tuple are display as-is.