From 52610551430fa60f34b28f884e5e21b32b82dac9 Mon Sep 17 00:00:00 2001 From: "Joseph S." <11660030+joseph-sch@users.noreply.github.com> Date: Mon, 13 Jan 2025 12:40:25 +0200 Subject: [PATCH] Fix for #7135 * Add the missing comma before the first argument's name * Add the missing spaces in the function description --- cpp/pybind/t/geometry/trianglemesh.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/pybind/t/geometry/trianglemesh.cpp b/cpp/pybind/t/geometry/trianglemesh.cpp index b1fed27bc08..100d26a8162 100644 --- a/cpp/pybind/t/geometry/trianglemesh.cpp +++ b/cpp/pybind/t/geometry/trianglemesh.cpp @@ -344,9 +344,9 @@ This example shows how to create a hemisphere from a sphere:: // Triangle Mesh's creation APIs. triangle_mesh .def_static("create_box", &TriangleMesh::CreateBox, - "Create a box triangle mesh. One vertex of the box" - "will be placed at the origin and the box aligns" - "with the positive x, y, and z axes." + "Create a box triangle mesh. One vertex of the box " + "will be placed at the origin and the box aligns " + "with the positive x, y, and z axes.", "width"_a = 1.0, "height"_a = 1.0, "depth"_a = 1.0, "float_dtype"_a = core::Float32,