From d3a4e3909378886c6a8d9af975d9a454641ad723 Mon Sep 17 00:00:00 2001 From: Benjamin Ummenhofer Date: Thu, 19 Dec 2024 04:54:43 -0800 Subject: [PATCH] apply style --- cpp/pybind/geometry/voxelgrid.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cpp/pybind/geometry/voxelgrid.cpp b/cpp/pybind/geometry/voxelgrid.cpp index 6bcc6b7264d..92edd621fa6 100644 --- a/cpp/pybind/geometry/voxelgrid.cpp +++ b/cpp/pybind/geometry/voxelgrid.cpp @@ -229,7 +229,8 @@ void pybind_voxelgrid_definitions(py::module &m) { m, "VoxelGrid", "create_from_point_cloud", {{"input", "The input PointCloud"}, {"voxel_size", "Voxel size of of the VoxelGrid construction."}, - {"pooling_mode", "VoxelPoolingMode for determining voxel color."}}); + {"pooling_mode", + "VoxelPoolingMode for determining voxel color."}}); docstring::ClassMethodDocInject( m, "VoxelGrid", "create_from_point_cloud_within_bounds", {{"input", "The input PointCloud"}, @@ -238,7 +239,9 @@ void pybind_voxelgrid_definitions(py::module &m) { "Minimum boundary point for the VoxelGrid to create."}, {"max_bound", "Maximum boundary point for the VoxelGrid to create."}, - {"pooling_mode", "VoxelPoolingMode that determines how to compute the voxel color."}}); + {"pooling_mode", + "VoxelPoolingMode that determines how to compute the voxel " + "color."}}); docstring::ClassMethodDocInject( m, "VoxelGrid", "create_from_triangle_mesh", {{"input", "The input TriangleMesh"},