Skip to content

Commit

Permalink
apply style
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminum committed Dec 19, 2024
1 parent 786b11b commit d3a4e39
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cpp/pybind/geometry/voxelgrid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand All @@ -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"},
Expand Down

0 comments on commit d3a4e39

Please sign in to comment.