From a0a3bcba09a2b6fe0a1b36a5975b6c9ac3c0ca9b Mon Sep 17 00:00:00 2001 From: Tim Ohliger Date: Mon, 16 Dec 2024 14:21:03 +0100 Subject: [PATCH] Removed overload since default args serve this case already --- cpp/pybind/visualization/utility.cpp | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/cpp/pybind/visualization/utility.cpp b/cpp/pybind/visualization/utility.cpp index 70269ab36b1..1e0cb09329f 100644 --- a/cpp/pybind/visualization/utility.cpp +++ b/cpp/pybind/visualization/utility.cpp @@ -108,25 +108,6 @@ void pybind_visualization_utility_definitions(py::module &m) { {"up", "The up vector of the camera."}, {"front", "The front vector of the camera."}, {"zoom", "The zoom of the camera."}}; - m.def( - "draw_geometries", - [](const std::vector> - &geometry_ptrs, - const std::string &window_name, int width, int height, int left, - int top, bool point_show_normal, bool mesh_show_wireframe, - bool mesh_show_back_face) { - std::string current_dir = - utility::filesystem::GetWorkingDirectory(); - DrawGeometries(geometry_ptrs, window_name, width, height, left, - top, point_show_normal, mesh_show_wireframe, - mesh_show_back_face); - utility::filesystem::ChangeWorkingDirectory(current_dir); - }, - "Function to draw a list of geometry::Geometry objects", - "geometry_list"_a, "window_name"_a = "Open3D", "width"_a = 1920, - "height"_a = 1080, "left"_a = 50, "top"_a = 50, - "point_show_normal"_a = false, "mesh_show_wireframe"_a = false, - "mesh_show_back_face"_a = false); m.def( "draw_geometries", [](const std::vector>