open3d.visualization.draw_geometries_with_animation_callback#

open3d.visualization.draw_geometries_with_animation_callback(geometry_list: list[open3d.geometry.Geometry], callback_function: Callable[[open3d.visualization.Visualizer], bool], window_name: str = 'Open3D', width: int = 1920, height: int = 1080, left: int = 50, top: int = 50) None#

Function to draw a list of geometry::Geometry objects with a customized animation callback function

Parameters:
  • geometry_list (list[open3d.geometry.Geometry]) – List of geometries to be visualized.

  • callback_function (Callable[[open3d.visualization.Visualizer], bool]) – Call back function to be triggered at a key press event.

  • window_name (str, optional, default='Open3D') – The displayed title of the visualization window.

  • width (int, optional, default=1920) – The width of the visualization window.

  • height (int, optional, default=1080) – The height of the visualization window.

  • left (int, optional, default=50) – The left margin of the visualization window.

  • top (int, optional, default=50) – The top margin of the visualization window.

Returns:

None