Skip to content

Commit 10d1943

Browse files
feat: add point cloud intersection calculation
1 parent d65fb17 commit 10d1943

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/diffCheckBindings.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ PYBIND11_MODULE(diffcheck_bindings, m) {
4343

4444
.def("subtract_points", &diffCheck::geometry::DFPointCloud::SubtractPoints,
4545
py::arg("point_cloud"), py::arg("distance_threshold"))
46+
47+
.def("intersect", &diffCheck::geometry::DFPointCloud::Intersect,
48+
py::arg("point_cloud"), py::arg("distance_threshold"))
4649

4750
.def("apply_transformation", &diffCheck::geometry::DFPointCloud::ApplyTransformation,
4851
py::arg("transformation"))

0 commit comments

Comments
 (0)