diff --git a/cpp/pybind/t/geometry/trianglemesh.cpp b/cpp/pybind/t/geometry/trianglemesh.cpp index b1fed27bc08..2f7dd067ea0 100644 --- a/cpp/pybind/t/geometry/trianglemesh.cpp +++ b/cpp/pybind/t/geometry/trianglemesh.cpp @@ -344,11 +344,10 @@ 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." - "width"_a = 1.0, - "height"_a = 1.0, "depth"_a = 1.0, + "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, "int_dtype"_a = core::Int64, "device"_a = core::Device("CPU:0"))